diff --git a/product/ERP5/tests/testERP5Web.py b/product/ERP5/tests/testERP5Web.py index 66392aa158a985c461abef3166180d927a218674..5dd26658ad306b3ede687be0f971e3e15f3aa207 100644 --- a/product/ERP5/tests/testERP5Web.py +++ b/product/ERP5/tests/testERP5Web.py @@ -59,7 +59,8 @@ class TestERP5Web(ERP5TypeTestCase, ZopeTestCase.Functional): """ Return the list of required business templates. """ - return ('erp5_base', 'erp5_web', + return ('erp5_base', 'erp5_web', + 'erp5_ingestion', 'erp5_ingestion_mysql_innodb_catalog', 'erp5_dms', 'erp5_dms_mysql_innodb_catalog',) def afterSetUp(self): diff --git a/product/ERP5/tests/testXHTML.py b/product/ERP5/tests/testXHTML.py index 941ec52b44f2b6f7a8d7a9b816575fd40906601f..5d944771300b9d415fe574468e68877ab58b4519 100644 --- a/product/ERP5/tests/testXHTML.py +++ b/product/ERP5/tests/testXHTML.py @@ -69,6 +69,8 @@ target_business_templates = ( 'erp5_consulting', + 'erp5_ingestion', + 'erp5_ingestion_mysql_innodb_catalog', 'erp5_crm', 'erp5_web', diff --git a/product/ERP5OOo/tests/testDms.py b/product/ERP5OOo/tests/testDms.py index fda7c11d58272efa4737dffdb9e27b8a225795d6..3a027ca815eabd2231fea21a409ed413e42bfbb9 100644 --- a/product/ERP5OOo/tests/testDms.py +++ b/product/ERP5OOo/tests/testDms.py @@ -120,7 +120,9 @@ class TestDocument(ERP5TypeTestCase, ZopeTestCase.Functional): return getattr(self.getPortal(),'document_module') def getBusinessTemplateList(self): - return ('erp5_base', 'erp5_web', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms') + return ('erp5_base', + 'erp5_ingestion', 'erp5_ingestion_mysql_innodb_catalog', + 'erp5_web', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms') def getNeededCategoryList(self): return () @@ -701,7 +703,9 @@ class TestDocumentWithSecurity(ERP5TypeTestCase): return getattr(self.getPortal(),'document_module') def getBusinessTemplateList(self): - return ('erp5_base', 'erp5_web', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms') + return ('erp5_base', + 'erp5_ingestion', 'erp5_ingestion_mysql_innodb_catalog', + 'erp5_web', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms') def test_ShowPreviewAfterSubmitted(self, quiet=QUIET, run=RUN_ALL_TEST): """ diff --git a/product/ERP5OOo/tests/testIngestion.py b/product/ERP5OOo/tests/testIngestion.py index 18113486754f178750fa5f95ca4db40cc7916649..9afb7ea102bd3eecb3a009248b1b32d73c1eb608 100644 --- a/product/ERP5OOo/tests/testIngestion.py +++ b/product/ERP5OOo/tests/testIngestion.py @@ -91,7 +91,9 @@ class TestIngestion(ERP5TypeTestCase): """ Return the list of required business templates. """ - return ('erp5_base', 'erp5_web', 'erp5_crm', + return ('erp5_base', + 'erp5_ingestion', 'erp5_ingestion_mysql_innodb_catalog', + 'erp5_web', 'erp5_crm', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms') def afterSetUp(self, quiet=QUIET, run=RUN_ALL_TEST):