- Timestamp:
- 14 Feb 2015, 17:22:51 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/tests/test_contract.py
r12615 r12617 38 38 APPITContract, 39 39 RPTContract, 40 APPTContract, 40 41 ) 41 42 from ikobacustom.pcn.customers.interfaces import ( … … 48 49 IAPPITContract, 49 50 IRPTContract, 51 IAPPTContract, 50 52 ) 51 53 … … 124 126 self.assertEqual(container[id8], contract8) 125 127 self.assertEqual(contract8.class_name, 'RPTContract') 128 129 contract9= createObject(u'waeup.APPTContract') 130 id9 = contract9.contract_id 131 container.addContract(contract9) 132 self.assertEqual(container[id9], contract9) 133 self.assertEqual(contract9.class_name, 'APPTContract') 126 134 return
Note: See TracChangeset for help on using the changeset viewer.