Changeset 5766
- Timestamp:
- 13 Feb 2011, 14:51:35 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_root.py
r5684 r5766 47 47 interfaces.IApplicantsRoot, ApplicantsRoot()) 48 48 ) 49 return 50 51 def test_add_container(self): 52 root = ApplicantsRoot() 53 fake_container = object() 54 root.addApplicantsContainer(fake_container, name='foo') 55 self.assertTrue(root['foo'] == fake_container) 49 56 return 50 57 … … 140 147 self.assertTrue('Updating site at my_site.' in log) 141 148 return 142 149 143 150 def suite(): 144 151 suite = unittest.TestSuite()
Note: See TracChangeset for help on using the changeset viewer.