[Zope3-checkins] CVS: Zope3/src/zope/app/tests -
placelesssetup.py:1.9
Marius Gedminas
marius at pov.lt
Tue Feb 17 13:43:46 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/tests
In directory cvs.zope.org:/tmp/cvs-serv23327/src/zope/app/tests
Modified Files:
placelesssetup.py
Log Message:
Fixed a buglet in the test runner that caused it to run unit tests from
tests.py when it should have run functional tests from ftests.py.
Added a note to doc/FTEST.txt saying that functional tests are incompatible
with the CleanUp helper.
Fixed a typo in placelesssetup.py
=== Zope3/src/zope/app/tests/placelesssetup.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/tests/placelesssetup.py:1.8 Fri Nov 21 12:12:14 2003
+++ Zope3/src/zope/app/tests/placelesssetup.py Tue Feb 17 13:43:45 2004
@@ -27,7 +27,7 @@
from zope.app.i18n.tests.placelesssetup \
import PlacelessSetup as I18nPlacelessSetup
from zope.app.container.tests.placelesssetup \
- import PlacelessSetup as ContainerPlaclessSetup
+ import PlacelessSetup as ContainerPlacelessSetup
from zope.app.security._protections import protect
from zope.app.browser.absoluteurl import AbsoluteURL
@@ -35,12 +35,12 @@
ACAPlacelessSetup,
EventPlacelessSetup,
I18nPlacelessSetup,
- ContainerPlaclessSetup
+ ContainerPlacelessSetup
):
def setUp(self):
CAPlacelessSetup.setUp(self)
- ContainerPlaclessSetup.setUp(self)
+ ContainerPlacelessSetup.setUp(self)
ACAPlacelessSetup.setUp(self)
EventPlacelessSetup.setUp(self)
I18nPlacelessSetup.setUp(self)
More information about the Zope3-Checkins
mailing list