[Erp5-report] r13607 - /erp5/trunk/products/ERP5Banking/tests/

nobody at svn.erp5.org nobody at svn.erp5.org
Sat Mar 24 16:03:54 CET 2007


Author: seb
Date: Sat Mar 24 16:03:44 2007
New Revision: 13607

URL: http://svn.erp5.org?rev=13607&view=rev
Log:
define the list of businness templates into the mixin class

Modified:
    erp5/trunk/products/ERP5Banking/tests/TestERP5BankingMixin.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountIncident.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashIncident.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSortingIncident.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencyPurchase.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencySale.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashIncident.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py
    erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py

Modified: erp5/trunk/products/ERP5Banking/tests/TestERP5BankingMixin.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/TestERP5BankingMixin.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/TestERP5BankingMixin.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/TestERP5BankingMixin.py Sat Mar 24 16:03:44 2007
@@ -44,6 +44,20 @@
   Mixin class for unit test of banking operations
   """
 
+  def getBusinessTemplateList(self):
+    """
+      Return the list of business templates we need to run the test.
+      This method is called during the initialization of the unit test by
+      the unit test framework in order to know which business templates
+      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',
+            'erp5_banking_check')
 
   def enableLightInstall(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountIncident.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountIncident.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountIncident.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingAccountIncident.py Sat Mar 24 16:03:44 2007
@@ -89,22 +89,6 @@
       Return the title of the test
     """
     return "ERP5BankingAccountIncident"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-            )
 
   def getAccountIncidentModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingAvailableInventory.py Sat Mar 24 16:03:44 2007
@@ -77,23 +77,6 @@
       Return the title of the test
     """
     return "ERP5BankingAvailabeInventory"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            'erp5_banking_check')
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashBalanceRegulation.py Sat Mar 24 16:03:44 2007
@@ -81,22 +81,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashBalanceRegulation"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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_balance_regulation contains all method for cash sorting
-           )
   
   def getCashBalanceRegulationModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashClassification.py Sat Mar 24 16:03:44 2007
@@ -60,22 +60,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashClassification"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getCashSortingModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashExchange.py Sat Mar 24 16:03:44 2007
@@ -82,22 +82,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashExchange"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-           )
 
   def getCashExchangeModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashIncident.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashIncident.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashIncident.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashIncident.py Sat Mar 24 16:03:44 2007
@@ -89,22 +89,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashIncident"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-            )
 
   def getCashIncidentModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashInventory.py Sat Mar 24 16:03:44 2007
@@ -69,22 +69,6 @@
       Return the title of the test
     """
     return "ERP5BankingInventory"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      need to be installed to run the test on.
-    """
-    return ('erp5_base',
-            'erp5_trade',
-            'erp5_accounting',
-            'erp5_banking_core',
-            'erp5_banking_inventory'
-            )
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashMovement.py Sat Mar 24 16:03:44 2007
@@ -102,23 +102,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashMovement"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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 movement
-           )
 
   def getCashMovementModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSorting.py Sat Mar 24 16:03:44 2007
@@ -60,22 +60,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashSorting"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getCashSortingModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSortingIncident.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSortingIncident.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSortingIncident.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashSortingIncident.py Sat Mar 24 16:03:44 2007
@@ -89,22 +89,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashSortingIncident"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-            )
 
   def getCashSortingIncidentModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencyPurchase.py Sat Mar 24 16:03:44 2007
@@ -82,22 +82,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashToCurrencyPurchase"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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' 
-           )
 
   def getCashToCurrencyPurchaseModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCashToCurrencySale.py Sat Mar 24 16:03:44 2007
@@ -81,22 +81,6 @@
       Return the title of the test
     """
     return "ERP5BankingCashToCurrencySale"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getCashToCurrencySaleModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckDeposit.py Sat Mar 24 16:03:44 2007
@@ -65,22 +65,6 @@
       Return the title of the test
     """
     return "ERP5BankingCheckDeposit"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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')
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckPayment.py Sat Mar 24 16:03:44 2007
@@ -64,22 +64,6 @@
       Return the title of the test
     """
     return "ERP5BankingCheckPayment"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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')
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookDelivery.py Sat Mar 24 16:03:44 2007
@@ -156,23 +156,6 @@
     """
     return "ERP5BankingCheckbookDelivery"
 
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
-
-
   def stepCheckObjects(self, sequence=None, sequence_list=None, **kwd):
     """
     Check that all the objects we created in afterSetUp or

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookMovement.py Sat Mar 24 16:03:44 2007
@@ -70,23 +70,6 @@
       Return the title of the test
     """
     return "ERP5BankingCheckbookMovement"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookReception.py Sat Mar 24 16:03:44 2007
@@ -68,23 +68,6 @@
       Return the title of the test
     """
     return "ERP5BankingCheckbookReception"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-            )
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookUsualCashTransfer.py Sat Mar 24 16:03:44 2007
@@ -135,23 +135,6 @@
       Return the title of the test
     """
     return "ERP5BankingCheckbookUsualCashTransfer"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCheckbookVaultTransfer.py Sat Mar 24 16:03:44 2007
@@ -160,23 +160,6 @@
     """
     return "ERP5BankingCheckbookVaultTransfer"
 
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
-
-
   def afterSetUp(self):
     """
       Method called before the launch of the test to initialize some data

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingClassificationSurvey.py Sat Mar 24 16:03:44 2007
@@ -60,22 +60,6 @@
       Return the title of the test
     """
     return "ERP5BankingClassificationSurvey"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getClassificationSurveyModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCounterRendering.py Sat Mar 24 16:03:44 2007
@@ -91,22 +91,6 @@
       Return the title of the test
     """
     return "ERP5BankingCounterRendering"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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 counter rendering
-           )
 
   def getCounterRenderingModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencyPurchase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencyPurchase.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencyPurchase.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencyPurchase.py Sat Mar 24 16:03:44 2007
@@ -72,20 +72,6 @@
     Return the Currency purchase Module
     """
     return getattr(self.getPortal(), 'currency_purchase_module', None)
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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')
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencySale.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencySale.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencySale.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingCurrencySale.py Sat Mar 24 16:03:44 2007
@@ -71,21 +71,6 @@
     Return the Currency Sale Module
     """
     return getattr(self.getPortal(), 'currency_sale_module', None)
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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')
-
 
   def afterSetUp(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingDestructionSurvey.py Sat Mar 24 16:03:44 2007
@@ -64,22 +64,6 @@
       Return the title of the test
     """
     return "ERP5BankingDestructionSurvey"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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 monetary destruction
-           )
 
   def getDestructionSurveyModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingForeignCashReception.py Sat Mar 24 16:03:44 2007
@@ -70,22 +70,6 @@
       Return the title of the test
     """
     return "ERP5BankingForeignCashReception"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-            )
 
   def getForeignCashReceptionModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingInternalMoneyDeposit.py Sat Mar 24 16:03:44 2007
@@ -60,22 +60,6 @@
       Return the title of the test
     """
     return "ERP5BankingInternalMoneyDeposit"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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_internal_money_deposit contains all method for cash sorting
-           )
   
   def getInternalMoneyDepositModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryDestruction.py Sat Mar 24 16:03:44 2007
@@ -91,22 +91,6 @@
       Return the title of the test
     """
     return "ERP5BankingMonetaryDestruction"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-           )
 
   def getMonetaryDestructionModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryIssue.py Sat Mar 24 16:03:44 2007
@@ -130,22 +130,6 @@
       Return the title of the test
     """
     return "ERP5BankingMonetaryIssue"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      need to be installed to run the test on.
-    """
-    return ('erp5_base',
-            'erp5_trade',
-            'erp5_accounting',
-            'erp5_banking_core',
-            'erp5_banking_cash'
-            )
-
 
   def getMonetaryIssueModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryRecall.py Sat Mar 24 16:03:44 2007
@@ -91,22 +91,6 @@
       Return the title of the test
     """
     return "ERP5BankingMonetaryRecall"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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 monetary recall
-           )
 
   def getMonetaryRecallModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetaryReception.py Sat Mar 24 16:03:44 2007
@@ -68,22 +68,6 @@
       Return the title of the test
     """
     return "ERP5BankingMonetaryReception"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      need to be installed to run the test on.
-    """
-    return ('erp5_base',
-            'erp5_trade',
-            'erp5_accounting',
-            'erp5_banking_core',
-            'erp5_banking_cash'
-            )
-
 
   def getMonetaryReceptionModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMonetarySurvey.py Sat Mar 24 16:03:44 2007
@@ -61,22 +61,6 @@
       Return the title of the test
     """
     return "ERP5BankingMonetarySurvey"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getMonetarySurveyModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDeposit.py Sat Mar 24 16:03:44 2007
@@ -64,22 +64,6 @@
       Return the title of the test
     """
     return "ERP5BankingMoneyDeposit"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'  #, 'currency_exchange_patch'
-             , 'erp5_banking_cash' # erp5_banking_money_deposit contains all method for cash sorting
-             )
   
   def getMoneyDepositModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositRendering.py Sat Mar 24 16:03:44 2007
@@ -91,22 +91,6 @@
       Return the title of the test
     """
     return "ERP5BankingMoneyDepositRendering"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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 money deposit rendering
-           )
 
   def getMoneyDepositRenderingModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMoneyDepositTransfer.py Sat Mar 24 16:03:44 2007
@@ -88,22 +88,6 @@
       Return the title of the test
     """
     return "ERP5BankingMoneyDepositTransfer"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-           )
 
   def getMoneyDepositTransferModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingMutilatedBanknote.py Sat Mar 24 16:03:44 2007
@@ -59,21 +59,6 @@
       Return the title of the test
     """
     return "ERP5BankingMutilatedBanknote"
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-            )
 
   def getMutilatedBanknoteModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingStopPayment.py Sat Mar 24 16:03:44 2007
@@ -72,22 +72,6 @@
       Return the title of the test
     """
     return "ERP5BankingStopPayment"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
 
   def getStopPaymentModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckPurchase.py Sat Mar 24 16:03:44 2007
@@ -50,27 +50,6 @@
 if __name__ == '__main__':
   execfile(os.path.join(sys.path[0], 'framework.py'))
 
-#class TestERP5BankingTravelerCheckPurchaseMixin:
-#
-#  def createTravelerCheckSale(self, sequence=None, sequence_list=None, **kwd):
-#    """
-#    Create a traveler check sale
-#    """
-#    # We will do the transfer ot two items.
-#    self.traveler_check_sale = self.traveler_check_sale_module.newContent(
-#                     id='traveler_check_sale', portal_type='Traveler Check Sale',
-#                     source_value=self.traveler_check_source, destination_value=None,
-#                     destination_payment_value=self.bank_account_1,
-#                     resource_value=self.currency_1,
-#                     start_date=self.date)
-#    # check its portal type
-#    self.assertEqual(self.traveler_check_sale.getPortalType(), 'Traveler Check Sale')
-#    # check source
-#    self.assertEqual(self.traveler_check_sale.getBaobabSource(), 
-#               'site/testsite/paris/surface/banque_interne/guichet_1/encaisse_des_billets_et_monnaies')
-#    # check destination
-#    self.assertEqual(self.traveler_check_sale.getBaobabDestination(), None)
-
 class TestERP5BankingTravelerCheckPurchase(TestERP5BankingCheckbookUsualCashTransferMixin,
                                        TestERP5BankingTravelerCheckSaleMixin,
                                        TestERP5BankingMixin, ERP5TypeTestCase):
@@ -93,22 +72,6 @@
       Return the title of the test
     """
     return "ERP5BankingTravelerCheckPurchase"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
 
   def getTravelerCheckPurchaseModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingTravelerCheckSale.py Sat Mar 24 16:03:44 2007
@@ -233,24 +233,6 @@
     """
     return "ERP5BankingTravelerCheckSale"
 
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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',
-            )
-
-
-
   def stepCheckObjects(self, sequence=None, sequence_list=None, **kwd):
     """
     Check that all the objects we created in afterSetUp or

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashIncident.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashIncident.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashIncident.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashIncident.py Sat Mar 24 16:03:44 2007
@@ -89,22 +89,6 @@
       Return the title of the test
     """
     return "ERP5BankingUsualCashIncident"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-            )
 
   def getUsualCashIncidentModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashRendering.py Sat Mar 24 16:03:44 2007
@@ -103,22 +103,6 @@
       Return the title of the test
     """
     return "ERP5BankingUsualCashRendering"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-           )
 
   def getUsualCashRenderingModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingUsualCashTransfer.py Sat Mar 24 16:03:44 2007
@@ -91,22 +91,6 @@
       Return the title of the test
     """
     return "ERP5BankingUsualCashTransfer"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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
-           )
 
   def getUsualCashTransferModule(self):
     """

Modified: erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py?rev=13607&r1=13606&r2=13607&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py (original)
+++ erp5/trunk/products/ERP5Banking/tests/testERP5BankingVaultTransfer.py Sat Mar 24 16:03:44 2007
@@ -103,22 +103,6 @@
       Return the title of the test
     """
     return "ERP5BankingVaultTransfer"
-
-
-  def getBusinessTemplateList(self):
-    """
-      Return the list of business templates we need to run the test.
-      This method is called during the initialization of the unit test by
-      the unit test framework in order to know which business templates
-      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'
-           )
 
   def getVaultTransferModule(self):
     """




More information about the Erp5-report mailing list