Changeset 4716 for TI12-security/trunk/python/ndg.security.test/ndg/security/test/attributeauthority/test_attributeauthority.py
- Timestamp:
- 24/12/08 11:54:17 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/python/ndg.security.test/ndg/security/test/attributeauthority/test_attributeauthority.py
r4680 r4716 25 25 mkPath = lambda file:jnPath(os.environ['NDGSEC_AA_UNITTEST_DIR'], file) 26 26 27 from ndg.security.test import BaseTestCase 28 27 29 from ndg.security.common.utils.configfileparsers import \ 28 30 CaseSensitiveConfigParser … … 33 35 34 36 35 class AttributeAuthorityTestCase( unittest.TestCase):37 class AttributeAuthorityTestCase(BaseTestCase): 36 38 clntPriKeyPwd = None 37 39 38 40 def setUp(self): 39 41 super(AttributeAuthorityTestCase, self).setUp() 42 40 43 if 'NDGSEC_INT_DEBUG' in os.environ: 41 44 import pdb … … 100 103 for k, v in hostInfo.items(): 101 104 self.assert_(k, "hostInfo value key unset") 102 self.assert_(v, "%s value not set" % k)103 105 104 106 print("Trusted Host Info:\n %s" % trustedHostInfo)
Note: See TracChangeset
for help on using the changeset viewer.