Changeset 5883
- Timestamp:
- 28 Mar 2011, 14:06:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/jambtables/tests/test_container.py
r5880 r5883 26 26 from zope.interface.verify import verifyClass, verifyObject 27 27 from waeup.sirp.applicants import interfaces 28 from waeup.sirp.applicants. container import (29 ApplicantsContainer,JAMBBasedApplicantsContainer,28 from waeup.sirp.applicants.jambtables.container import ( 29 JAMBBasedApplicantsContainer, 30 30 ) 31 32 class ApplicantsContainerTestCase(unittest.TestCase):33 34 def test_interfaces(self):35 # Make sure the correct interfaces are implemented.36 self.assertTrue(37 verifyClass(38 interfaces.IApplicantsContainer, ApplicantsContainer)39 )40 self.assertTrue(41 verifyObject(42 interfaces.IApplicantsContainer, ApplicantsContainer())43 )44 return45 31 46 32 class JAMBBasedApplicantsContainerTestCase(unittest.TestCase): … … 61 47 suite = unittest.TestSuite() 62 48 for test_case in [ 63 ApplicantsContainerTestCase,64 49 JAMBBasedApplicantsContainerTestCase, 65 50 ]:
Note: See TracChangeset for help on using the changeset viewer.