Ignore:
Timestamp:
15 Mar 2015, 13:14:08 (10 years ago)
Author:
Henrik Bettermann
Message:

Remove unnecessary test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/tests/test_contract.py

    r12741 r12769  
    222222        self.assertEqual(len(items), 0)
    223223        self.assertEqual(payable.currency, None)
    224 
    225     def test_different_currencies_forbiddedn(self):
    226         # we do not accept different currencies in payment items
    227         contract = SampleContract()
    228         option1 = ProductOption(u"Fee 1", decimal.Decimal("31.10"), "EUR")
    229         option2 = ProductOption(u"Fee 2", decimal.Decimal("12.12"), "USD")
    230         contract.product_options = [option1, option2]
    231         self.assertRaises(ValueError, PayableContract, contract)
Note: See TracChangeset for help on using the changeset viewer.