Changeset 8219 for main/waeup.kofa/trunk
- Timestamp:
- 19 Apr 2012, 14:16:39 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/tests/test_batching.py
r8202 r8219 29 29 from zope.interface import Interface, implements, verify 30 30 from waeup.kofa.app import University 31 from waeup.kofa.interfaces import ICSVExporter 31 from waeup.kofa.interfaces import ICSVExporter, IBatchProcessor 32 32 from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase 33 33 from waeup.kofa.utils.batching import ExporterBase … … 170 170 return 171 171 172 def test_iface(self): 173 # make sure we fullfill interface contracts 174 obj = BatchProcessor() 175 verify.verifyClass(IBatchProcessor, BatchProcessor) 176 verify.verifyObject(IBatchProcessor, obj) 177 return 178 172 179 def test_import(self): 173 180 processor = CaveProcessor()
Note: See TracChangeset for help on using the changeset viewer.