[CMF-checkins]
SVN: CMF/branches/jens_tools_as_utilities/CMFCore/testing.py
- set up / tear down for each non-functional test
Yvo Schubbe
y.2007- at wcm-solutions.de
Mon Jan 29 13:08:17 EST 2007
Log message for revision 72253:
- set up / tear down for each non-functional test
Changed:
U CMF/branches/jens_tools_as_utilities/CMFCore/testing.py
-=-
Modified: CMF/branches/jens_tools_as_utilities/CMFCore/testing.py
===================================================================
--- CMF/branches/jens_tools_as_utilities/CMFCore/testing.py 2007-01-29 18:05:18 UTC (rev 72252)
+++ CMF/branches/jens_tools_as_utilities/CMFCore/testing.py 2007-01-29 18:08:16 UTC (rev 72253)
@@ -124,7 +124,7 @@
class EventZCMLLayer:
@classmethod
- def setUp(cls):
+ def testSetUp(cls):
import Products
zcml.load_config('meta.zcml', Products.Five)
@@ -133,14 +133,14 @@
setHooks()
@classmethod
- def tearDown(cls):
+ def testTearDown(cls):
cleanUp()
class TraversingZCMLLayer:
@classmethod
- def setUp(cls):
+ def testSetUp(cls):
import Products.Five
zcml.load_config('meta.zcml', Products.Five)
@@ -148,14 +148,14 @@
setHooks()
@classmethod
- def tearDown(cls):
+ def testTearDown(cls):
cleanUp()
class TraversingEventZCMLLayer:
@classmethod
- def setUp(cls):
+ def testSetUp(cls):
import Products.Five
zcml.load_config('meta.zcml', Products.Five)
@@ -165,7 +165,7 @@
setHooks()
@classmethod
- def tearDown(cls):
+ def testTearDown(cls):
cleanUp()
@@ -234,7 +234,7 @@
class ExportImportZCMLLayer:
@classmethod
- def setUp(cls):
+ def testSetUp(cls):
import Products.Five
import Products.GenericSetup
import Products.CMFCore
@@ -249,7 +249,7 @@
setHooks()
@classmethod
- def tearDown(cls):
+ def testTearDown(cls):
cleanUp()
More information about the CMF-checkins
mailing list