[Zope3-checkins] CVS: Zope3/src/zope/app/fssync/tests -
test_committer.py:1.27 test_fsregistry.py:1.5
Philipp von Weitershausen
philikon at philikon.de
Mon Mar 1 08:07:19 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/fssync/tests
In directory cvs.zope.org:/tmp/cvs-serv12895/fssync/tests
Modified Files:
test_committer.py test_fsregistry.py
Log Message:
Moved the zope.app.browser.fssync package to zope.app.fssync.browser,
and the zope.app.interfaces.fssync module to zope.app.fssync.interfaces.
=== Zope3/src/zope/app/fssync/tests/test_committer.py 1.26 => 1.27 ===
--- Zope3/src/zope/app/fssync/tests/test_committer.py:1.26 Wed Feb 25 18:02:26 2004
+++ Zope3/src/zope/app/fssync/tests/test_committer.py Mon Mar 1 08:07:17 2004
@@ -43,7 +43,7 @@
from zope.app.fssync import committer, syncer # The module
from zope.app.fssync.committer import Checker, Committer, SynchronizationError
from zope.app.fssync.fsregistry import provideSynchronizer, fsRegistry
-from zope.app.interfaces.fssync import IGlobalFSSyncService
+from zope.app.fssync.interfaces import IGlobalFSSyncService
class Sample(object):
=== Zope3/src/zope/app/fssync/tests/test_fsregistry.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/fssync/tests/test_fsregistry.py:1.4 Mon Oct 6 18:08:52 2003
+++ Zope3/src/zope/app/fssync/tests/test_fsregistry.py Mon Mar 1 08:07:18 2004
@@ -18,10 +18,11 @@
from unittest import TestCase, TestSuite, main, makeSuite
-from zope.testing.cleanup import CleanUp # Base class w registry cleanup
-from zope.app.interfaces.fssync import IGlobalFSSyncService
+from zope.testing.cleanup import CleanUp
from zope.interface.verify import verifyObject
from zope.exceptions import DuplicationError, NotFoundError
+
+from zope.app.fssync.interfaces import IGlobalFSSyncService
from zope.app.fssync.tests.sampleclass \
import C1, C2, CDirAdapter, CFileAdapter, CDefaultAdapter
from zope.app.fssync.fsregistry \
More information about the Zope3-Checkins
mailing list