- Moved the existing tests to its own test suite (testspackage) which is used by default. All tests should still run in the exact same way as before. - Started with creating a SAML2Int test suite that specifically tests the SP with the SAML2Int profile (currently, only the IdP tests seem to cover the SAML2Int profile)
9 lines
141 B
Python
Executable File
9 lines
141 B
Python
Executable File
#!/usr/bin/env python
|
|
__author__ = 'rohe0002'
|
|
|
|
from sp_test import Client
|
|
from sp_test.check import factory
|
|
|
|
cli = Client(factory)
|
|
cli.run()
|