From 3f5295160d1af13886a8f993f86d9eeb33031cf1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=81ukasz=20Nowak?= <luke@nexedi.com>
Date: Wed, 30 Sep 2009 11:13:08 +0000
Subject: [PATCH]  - fix typo  - as common parts are moved to
 testERP5TypeInterfaces import them from there

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@29315 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/tests/testERP5Interfaces.py | 28 +++---------------------
 1 file changed, 3 insertions(+), 25 deletions(-)

diff --git a/product/ERP5/tests/testERP5Interfaces.py b/product/ERP5/tests/testERP5Interfaces.py
index 7a31fe8e54..eafb97dfea 100644
--- a/product/ERP5/tests/testERP5Interfaces.py
+++ b/product/ERP5/tests/testERP5Interfaces.py
@@ -7,7 +7,7 @@
 # programmers who take the whole responsibility of assessing all potential
 # consequences resulting from its eventual inadequacies and bugs
 # End users who are looking for a ready-to-use solution with commercial
-# guarantees and support are strongly adviced to contract a Free Software
+# guarantees and support are strongly advised to contract a Free Software
 # Service Company
 #
 # This program is Free Software; you can redistribute it and/or
@@ -27,6 +27,8 @@
 ##############################################################################
 
 from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
+from Products.ERP5Type.tests.testERP5TypeInterfaces import makeTestMethod, \
+  addTestMethodDynamically
 from zope.interface.verify import verifyClass
 import unittest
 
@@ -91,30 +93,6 @@ class TestERP5Interfaces(ERP5TypeTestCase):
         import IAggregatedAmountList
     from Products.ERP5.AggregatedAmountList import AggregatedAmountList
     verifyClass(IAggregatedAmountList, AggregatedAmountList)
-  
-def makeTestMethod(document, interface):
-  """Common method which checks if documents implements interface"""
-  def testMethod(self):
-    _temp = __import__('Products.ERP5Type.Document.%s' % document, globals(),
-        locals(), ['%s' % document])
-    Document = getattr(_temp, document)
-    _temp = __import__('Products.ERP5Type.interfaces', globals(), locals(),
-        ['%s' % interface])
-    Interface = getattr(_temp, interface)
-
-    verifyClass(Interface, Document)
-
-  return testMethod
-
-def addTestMethodDynamically():
-  """Creates test methods on the fly 
-
-    Uses naming test_TradeCondition_implements_ITransformation
-    It is possible to use --run_only on those dynamically generated methods"""
-  for document, interface in implements_tuple_list:
-    method_name = 'test_%s_implements_%s' % (document, interface)
-    method = makeTestMethod(document, interface)
-    setattr(TestERP5Interfaces, method_name, method)
 
 addTestMethodDynamically()
 
-- 
2.30.9