diff options
Diffstat (limited to 'python/tests/errorchecking_tests.py')
-rw-r--r-- | python/tests/errorchecking_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/tests/errorchecking_tests.py b/python/tests/errorchecking_tests.py index db6bd6a7..97fcc31c 100644 --- a/python/tests/errorchecking_tests.py +++ b/python/tests/errorchecking_tests.py @@ -45,12 +45,14 @@ except NameError: class ErrorCheckingTestCase(unittest.TestCase): def test01(self): + """Instanciate Login with None as Server""" try: lasso.Login(None).msgUrl except: pass def test02(self): + """Instanciate Logout with None as Server""" # Same as test01; replace Login by Logout try: lasso.Logout(None, lasso.providerTypeSp).msgUrl @@ -58,6 +60,7 @@ class ErrorCheckingTestCase(unittest.TestCase): pass def test03(self): + """Process empty string as authnrequest msg""" # This time; we got something wrong as query string; we pass it to # initFromAuthnRequestMsg; surely it shouldn't segfault server = lasso.Server( |