- Timestamp:
- 11 Mar 2015, 22:51:40 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/branches/uli-payments/src/waeup/ikoba/customers/tests/test_customer.py
r12738 r12739 21 21 import re 22 22 import unittest 23 import grok24 23 from cStringIO import StringIO 25 from datetime import tzinfo 26 from zope.component import ( 27 getUtility, queryUtility, createObject, getUtilitiesFor, 28 ) 24 from zope.component import getUtility, getUtilitiesFor 29 25 from zope.component.hooks import setSite 30 from zope.catalog.interfaces import ICatalog31 26 from zope.component.interfaces import IFactory 32 from zope.event import notify33 27 from zope.interface import verify 34 from zope.schema.interfaces import RequiredMissing35 28 from waeup.ikoba.interfaces import IExtFileStore, IFileStoreNameChooser 36 29 from waeup.ikoba.app import Company … … 45 38 from waeup.ikoba.testing import FunctionalLayer, FunctionalTestCase 46 39 40 47 41 class HelperTests(unittest.TestCase): 48 42 # Tests for helper functions in customer module. … … 66 60 path_from_custid('KM123456'), u'00120/KM123456') 67 61 return 62 68 63 69 64 class CustomerTest(FunctionalTestCase): … … 257 252 return 258 253 254 259 255 class CustomerFactoryTest(FunctionalTestCase): 260 256
Note: See TracChangeset for help on using the changeset viewer.