Changeset 7265 for main/waeup.sirp/trunk
- Timestamp:
- 4 Dec 2011, 13:35:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_batching.py
r7263 r7265 207 207 def test_entryExists(self): 208 208 assert self.importer.entryExists( 209 210 self.app) is None209 dict(container_code='dp2011', application_number='999'), 210 self.app) is False 211 211 212 212 def test_getEntry(self): … … 223 223 224 224 def test_delEntry(self): 225 assert self.application_number in self.app['applicants']['dp2011'].keys() 225 assert self.application_number in self.app[ 226 'applicants']['dp2011'].keys() 226 227 self.importer.delEntry( 227 228 dict(container_code='dp2011', 228 229 application_number=self.application_number), self.app) 229 assert self.application_number not in self.app['applicants']['dp2011'].keys() 230 assert self.application_number not in self.app[ 231 'applicants']['dp2011'].keys() 230 232 231 233 def test_import(self):
Note: See TracChangeset for help on using the changeset viewer.