blob: eae7dfae313b07d2c8229398ee2e20ac2d7c2ef0 [file] [log] [blame]
Chetan Gaonkercfcce782016-05-10 10:10:42 -07001#
2# Copyright 2016-present Ciena Corporation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Chetan Gaonkere2b78722016-02-22 17:27:09 -080016import unittest
17import os,sys
Chetan Gaonker5b366302016-03-21 16:18:21 -070018from nose.tools import assert_equal
Chetan Gaonkere2b78722016-02-22 17:27:09 -080019from EapPAP import PAPAuthTest
20
21class eap_auth_exchange(unittest.TestCase):
22 def test_eap_pap(self):
23 pap = PAPAuthTest()
24 pap.runTest()
25
26if __name__ == '__main__':
27 t = PAPAuthTest()
28 t.runTest()
29