- Timestamp:
- 12 Feb 2015, 09:56:13 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/tests/test_contract.py
r12601 r12604 35 35 RPCContract, 36 36 IPPMVLContract, 37 RPPMVLContract, 37 38 ) 38 39 from ikobacustom.pcn.customers.interfaces import ( … … 42 43 IRPCContract, 43 44 IIPPMVLContract, 45 IRPPMVLContract, 44 46 ) 45 47 … … 96 98 self.assertEqual(container[id5], contract5) 97 99 self.assertEqual(contract5.class_name, 'IPPMVLContract') 100 101 contract6 = createObject(u'waeup.RPPMVLContract') 102 id6 = contract6.contract_id 103 container.addContract(contract6) 104 self.assertEqual(container[id6], contract6) 105 self.assertEqual(contract6.class_name, 'RPPMVLContract') 98 106 return
Note: See TracChangeset for help on using the changeset viewer.