From bb809df3b6c2b9152742fb8a0f5325189417a0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Perrin?= <jerome@nexedi.com> Date: Mon, 24 Jul 2006 20:32:25 +0000 Subject: [PATCH] check that default_* keys works too git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8726 20353a03-c40f-0410-a6d1-a30d3c3de9de --- product/ERP5Catalog/tests/testERP5Catalog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/product/ERP5Catalog/tests/testERP5Catalog.py b/product/ERP5Catalog/tests/testERP5Catalog.py index 9233647052..d2a9fc0879 100644 --- a/product/ERP5Catalog/tests/testERP5Catalog.py +++ b/product/ERP5Catalog/tests/testERP5Catalog.py @@ -692,6 +692,9 @@ class TestERP5Catalog(ERP5TypeTestCase): organisation_list = [x.getObject() for x in module.searchFolder(group_title='Nexedi')] self.assertEquals(organisation_list,[organisation]) + organisation_list = [x.getObject() for x in + module.searchFolder(default_group_title='Nexedi')] + self.assertEquals(organisation_list,[organisation]) # Try to get the organisation with the group id nexedi organisation_list = [x.getObject() for x in module.searchFolder(group_id='storever')] -- 2.30.9