Ignore:
Timestamp:
10 Mar 2015, 15:52:18 (10 years ago)
Author:
uli
Message:

contract finder does not complain about missing catalog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/branches/uli-payments/src/waeup/ikoba/customers/tests/test_contract.py

    r12717 r12718  
    181181        result = finder.get_payable_by_id('Not-a-valid-id')
    182182        self.assertTrue(result is None)
     183
     184    def test_contract_finder_no_catalog(self):
     185        # contract finder does not complain about missing catalog
     186        finder = ContractFinder()
     187        result = finder.get_payable_by_id('CON1234')
     188        self.assertTrue(result is None)
Note: See TracChangeset for help on using the changeset viewer.