From 900d00832a48b65109d65f264b21e9a271bab175 Mon Sep 17 00:00:00 2001 From: Sebastien Robin <seb@nexedi.com> Date: Thu, 15 Jun 2006 16:26:55 +0000 Subject: [PATCH] added coin of 100 git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7802 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Banking/tests/TestERP5BankingMixin.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/product/ERP5Banking/tests/TestERP5BankingMixin.py b/product/ERP5Banking/tests/TestERP5BankingMixin.py index fe0de8aa9d..c7e475e79c 100644 --- a/product/ERP5Banking/tests/TestERP5BankingMixin.py +++ b/product/ERP5Banking/tests/TestERP5BankingMixin.py @@ -343,6 +343,11 @@ class TestERP5BankingMixin: portal_type='Coin', base_price=200, price_currency_value=self.currency_1, variation_list=('1992', '2003'), quantity_unit_value=self.unit) + # create document for coin of 200 euros from years 1992 and 2003 + self.piece_100 = self.currency_cash_module.newContent(id='piece_100', + portal_type='Coin', base_price=100, + price_currency_value=self.currency_1, variation_list=('1992', '2003'), + quantity_unit_value=self.unit) # create document for banknote of 200 euros from years 1992 and 2003 self.billet_200 = self.currency_cash_module.newContent(id='billet_200', portal_type='Banknote', base_price=200, -- 2.30.9