[Erp5-report] r43388 seb - in /erp5/trunk/products: ERP5/tests/ ERP5Form/tests/ ERP5OOo/tests/

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Feb 16 18:06:26 CET 2011


Author: seb
Date: Wed Feb 16 18:06:26 2011
New Revision: 43388

URL: http://svn.erp5.org?rev=43388&view=rev
Log:
old proxy fields of erp5_core needed by several tests

Modified:
    erp5/trunk/products/ERP5/tests/testOrder.py
    erp5/trunk/products/ERP5/tests/testTradeReports.py
    erp5/trunk/products/ERP5/tests/testWebCrawler.py
    erp5/trunk/products/ERP5Form/tests/testListBox.py
    erp5/trunk/products/ERP5Form/tests/testOOoChart.py
    erp5/trunk/products/ERP5OOo/tests/testOOoStyle.py

Modified: erp5/trunk/products/ERP5/tests/testOrder.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testOrder.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/tests/testOrder.py [utf8] (original)
+++ erp5/trunk/products/ERP5/tests/testOrder.py [utf8] Wed Feb 16 18:06:26 2011
@@ -63,7 +63,8 @@ class TestOrderMixin(SubcontentReindexin
   def getBusinessTemplateList(self):
     """
     """
-    return ('erp5_base','erp5_pdm', 'erp5_simulation', 'erp5_trade',
+    return ('erp5_core_proxy_field_legacy',
+            'erp5_base','erp5_pdm', 'erp5_simulation', 'erp5_trade',
             'erp5_apparel', 'erp5_project', 'erp5_simulation_test',
             'erp5_administration')
 

Modified: erp5/trunk/products/ERP5/tests/testTradeReports.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testTradeReports.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/tests/testTradeReports.py [utf8] (original)
+++ erp5/trunk/products/ERP5/tests/testTradeReports.py [utf8] Wed Feb 16 18:06:26 2011
@@ -43,7 +43,8 @@ class TestTradeReports(ERP5ReportTestCas
 
   def getBusinessTemplateList(self):
     """Returns list of BT to be installed."""
-    return ('erp5_base', 'erp5_trade', 'erp5_pdm', )
+    return ('erp5_core_proxy_field_legacy',
+            'erp5_base', 'erp5_trade', 'erp5_pdm', )
 
   def login(self):
     """login with Manager roles."""

Modified: erp5/trunk/products/ERP5/tests/testWebCrawler.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/tests/testWebCrawler.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/tests/testWebCrawler.py [utf8] (original)
+++ erp5/trunk/products/ERP5/tests/testWebCrawler.py [utf8] Wed Feb 16 18:06:26 2011
@@ -57,7 +57,8 @@ class TestWebCrawler(ERP5TypeTestCase):
     """
       Return the list of required business templates.
     """
-    return ('erp5_base',
+    return ('erp5_core_proxy_field_legacy',
+            'erp5_base',
             'erp5_ingestion',
             'erp5_ingestion_mysql_innodb_catalog',
             'erp5_web',

Modified: erp5/trunk/products/ERP5Form/tests/testListBox.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Form/tests/testListBox.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Form/tests/testListBox.py [utf8] (original)
+++ erp5/trunk/products/ERP5Form/tests/testListBox.py [utf8] Wed Feb 16 18:06:26 2011
@@ -65,7 +65,7 @@ class TestListBox(ERP5TypeTestCase):
   def getBusinessTemplateList(self):
     # Use the same framework as the functional testing for convenience.
     # This adds some specific portal types and skins.
-    return ('erp5_ui_test',)
+    return ('erp5_core_proxy_field_legacy', 'erp5_ui_test',)
 
   def getTitle(self):
     return "ListBox"

Modified: erp5/trunk/products/ERP5Form/tests/testOOoChart.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5Form/tests/testOOoChart.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5Form/tests/testOOoChart.py [utf8] (original)
+++ erp5/trunk/products/ERP5Form/tests/testOOoChart.py [utf8] Wed Feb 16 18:06:26 2011
@@ -55,7 +55,8 @@ class TestOOoChart(ERP5TypeTestCase, Zop
       return 'Test OOoChart'
 
     def getBusinessTemplateList(self):
-      return ('erp5_base', 
+      return ('erp5_core_proxy_field_legacy',
+              'erp5_base',
               'erp5_ingestion',
               'erp5_web',
               'erp5_dms',

Modified: erp5/trunk/products/ERP5OOo/tests/testOOoStyle.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5OOo/tests/testOOoStyle.py?rev=43388&r1=43387&r2=43388&view=diff
==============================================================================
--- erp5/trunk/products/ERP5OOo/tests/testOOoStyle.py [utf8] (original)
+++ erp5/trunk/products/ERP5OOo/tests/testOOoStyle.py [utf8] Wed Feb 16 18:06:26 2011
@@ -47,7 +47,8 @@ class TestOOoStyle(ERP5TypeTestCase, Zop
   content_type = None
 
   def getBusinessTemplateList(self):
-    return ('erp5_base', 'erp5_ods_style', 'erp5_odt_style',)
+    return ('erp5_core_proxy_field_legacy',
+            'erp5_base', 'erp5_ods_style', 'erp5_odt_style',)
 
   def afterSetUp(self):
     if not self.skin:



More information about the Erp5-report mailing list