Changed name of test drivers

This commit is contained in:
Roland Hedberg
2013-08-27 13:09:47 +02:00
parent 5680d04ced
commit 9944bba618
4 changed files with 3 additions and 3 deletions

View File

@@ -38,5 +38,5 @@ setup(
"beautifulsoup4",
"mako"],
zip_safe=False,
scripts=["script/saml2c.py", "script/saml2i.py"]
scripts=["script/idp_testdrv.py", "script/sp_testdrv.py"]
)

View File

@@ -172,7 +172,7 @@ OPERATIONS = {
"sequence": [(Login, AuthnRequest, AuthnResponse, None)],
"tests": {"pre": [], "post": []}
},
'verify': {
'FL02': {
"name": 'Verify various aspects of the generated AuthnRequest message',
"descr": 'Basic Login test',
"sequence": [],

View File

@@ -7,7 +7,7 @@ import json
BASE = "http://localhost:8088"
metadata = open("./idp/idp.xml").read()
metadata = open("idp_test/idp.xml").read()
info = {
"entity_id": "%s/idp.xml" % BASE,