From fdc8159f02ad450b629fa4a8d501f0681f2e8e63 Mon Sep 17 00:00:00 2001 From: Sebastien Robin <seb@nexedi.com> Date: Sat, 17 Jun 2006 13:35:11 +0000 Subject: [PATCH] added erp5_trade and erp5_accounting bt git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7832 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Banking/tests/testERP5BankingCashClassification.py | 2 ++ product/ERP5Banking/tests/testERP5BankingCashSorting.py | 2 ++ product/ERP5Banking/tests/testERP5BankingCheckDeposit.py | 2 ++ product/ERP5Banking/tests/testERP5BankingCheckPayment.py | 2 ++ .../ERP5Banking/tests/testERP5BankingClassificationSurvey.py | 2 ++ .../ERP5Banking/tests/testERP5BankingForeignCashReception.py | 2 ++ product/ERP5Banking/tests/testERP5BankingMonetaryIssue.py | 2 ++ product/ERP5Banking/tests/testERP5BankingMonetaryReception.py | 2 ++ product/ERP5Banking/tests/testERP5BankingMonetarySurvey.py | 2 ++ .../ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py | 2 ++ product/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py | 2 ++ 11 files changed, 22 insertions(+) diff --git a/product/ERP5Banking/tests/testERP5BankingCashClassification.py b/product/ERP5Banking/tests/testERP5BankingCashClassification.py index 131317fd7d..0ac7afe55d 100755 --- a/product/ERP5Banking/tests/testERP5BankingCashClassification.py +++ b/product/ERP5Banking/tests/testERP5BankingCashClassification.py @@ -70,6 +70,8 @@ class TestERP5BankingCashClassification(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ( 'erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' # erp5_banking_cash contains all method for cash sorting diff --git a/product/ERP5Banking/tests/testERP5BankingCashSorting.py b/product/ERP5Banking/tests/testERP5BankingCashSorting.py index 0e6fff99d4..0e2108afe3 100755 --- a/product/ERP5Banking/tests/testERP5BankingCashSorting.py +++ b/product/ERP5Banking/tests/testERP5BankingCashSorting.py @@ -70,6 +70,8 @@ class TestERP5BankingCashSorting(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ( 'erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' # erp5_banking_cash contains all method for cash sorting diff --git a/product/ERP5Banking/tests/testERP5BankingCheckDeposit.py b/product/ERP5Banking/tests/testERP5BankingCheckDeposit.py index c2db217e1b..82e06ca713 100755 --- a/product/ERP5Banking/tests/testERP5BankingCheckDeposit.py +++ b/product/ERP5Banking/tests/testERP5BankingCheckDeposit.py @@ -75,6 +75,8 @@ class TestERP5BankingCheckDeposit(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base', + 'erp5_trade', + 'erp5_accounting', 'erp5_banking_core', 'erp5_banking_inventory', 'erp5_banking_check') diff --git a/product/ERP5Banking/tests/testERP5BankingCheckPayment.py b/product/ERP5Banking/tests/testERP5BankingCheckPayment.py index f93db39f77..c64780a39a 100755 --- a/product/ERP5Banking/tests/testERP5BankingCheckPayment.py +++ b/product/ERP5Banking/tests/testERP5BankingCheckPayment.py @@ -75,6 +75,8 @@ class TestERP5BankingCheckPayment(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base', + 'erp5_trade', + 'erp5_accounting', 'erp5_banking_core', 'erp5_banking_inventory', 'erp5_banking_check') diff --git a/product/ERP5Banking/tests/testERP5BankingClassificationSurvey.py b/product/ERP5Banking/tests/testERP5BankingClassificationSurvey.py index 2d43b1ad07..3f0641d7e1 100755 --- a/product/ERP5Banking/tests/testERP5BankingClassificationSurvey.py +++ b/product/ERP5Banking/tests/testERP5BankingClassificationSurvey.py @@ -70,6 +70,8 @@ class TestERP5BankingClassificationSurvey(TestERP5BankingMixin, ERP5TypeTestCase need to be installed to run the test on. """ return ( 'erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' # erp5_banking_cash contains all method for classification surveyg diff --git a/product/ERP5Banking/tests/testERP5BankingForeignCashReception.py b/product/ERP5Banking/tests/testERP5BankingForeignCashReception.py index 35d335355e..c7347eee59 100755 --- a/product/ERP5Banking/tests/testERP5BankingForeignCashReception.py +++ b/product/ERP5Banking/tests/testERP5BankingForeignCashReception.py @@ -80,6 +80,8 @@ class TestERP5BankingForeignCashReception(TestERP5BankingMixin, ERP5TypeTestCase need to be installed to run the test on. """ return ('erp5_base', + 'erp5_trade', + 'erp5_accounting', 'erp5_banking_core', 'erp5_banking_inventory', 'erp5_banking_cash' diff --git a/product/ERP5Banking/tests/testERP5BankingMonetaryIssue.py b/product/ERP5Banking/tests/testERP5BankingMonetaryIssue.py index 143421f4e3..5d5fc0a5ce 100755 --- a/product/ERP5Banking/tests/testERP5BankingMonetaryIssue.py +++ b/product/ERP5Banking/tests/testERP5BankingMonetaryIssue.py @@ -79,6 +79,8 @@ class TestERP5BankingMonetaryIssue(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base', + 'erp5_trade', + 'erp5_accounting', 'erp5_banking_core', 'erp5_banking_cash' ) diff --git a/product/ERP5Banking/tests/testERP5BankingMonetaryReception.py b/product/ERP5Banking/tests/testERP5BankingMonetaryReception.py index c3764b6e06..ed0a4abf39 100755 --- a/product/ERP5Banking/tests/testERP5BankingMonetaryReception.py +++ b/product/ERP5Banking/tests/testERP5BankingMonetaryReception.py @@ -78,6 +78,8 @@ class TestERP5BankingMonetaryReception(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base', + 'erp5_trade', + 'erp5_accounting', 'erp5_banking_core', 'erp5_banking_cash' ) diff --git a/product/ERP5Banking/tests/testERP5BankingMonetarySurvey.py b/product/ERP5Banking/tests/testERP5BankingMonetarySurvey.py index 429c10bc25..98cdb85690 100755 --- a/product/ERP5Banking/tests/testERP5BankingMonetarySurvey.py +++ b/product/ERP5Banking/tests/testERP5BankingMonetarySurvey.py @@ -71,6 +71,8 @@ class TestERP5BankingMonetarySurvey(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' # erp5_banking_cash contains all method for cash transfer diff --git a/product/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py b/product/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py index 9ee946da5c..d9a21b02be 100644 --- a/product/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py +++ b/product/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py @@ -98,6 +98,8 @@ class TestERP5BankingMoneyDepositTransfer(TestERP5BankingMixin, ERP5TypeTestCase need to be installed to run the test on. """ return ('erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' diff --git a/product/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py b/product/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py index ea33b22b14..0247280fbe 100755 --- a/product/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py +++ b/product/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py @@ -101,6 +101,8 @@ class TestERP5BankingUsualCashTransfer(TestERP5BankingMixin, ERP5TypeTestCase): need to be installed to run the test on. """ return ('erp5_base' + , 'erp5_trade' + , 'erp5_accounting' , 'erp5_banking_core' # erp5_banking_core contains all generic methods for banking , 'erp5_banking_inventory' , 'erp5_banking_cash' # erp5_banking_cash contains all method for cash transfer -- 2.30.9