[Zodb-checkins] SVN: ZODB/branches/3.9/src/ZODB/scripts/tests.py Ensure that repozo is importable.
Tres Seaver
tseaver at palladion.com
Fri Nov 20 11:52:54 EST 2009
Log message for revision 105915:
Ensure that repozo is importable.
Changed:
U ZODB/branches/3.9/src/ZODB/scripts/tests.py
-=-
Modified: ZODB/branches/3.9/src/ZODB/scripts/tests.py
===================================================================
--- ZODB/branches/3.9/src/ZODB/scripts/tests.py 2009-11-20 16:48:04 UTC (rev 105914)
+++ ZODB/branches/3.9/src/ZODB/scripts/tests.py 2009-11-20 16:52:54 UTC (rev 105915)
@@ -26,6 +26,11 @@
(re.compile('hash=[0-9a-f]{40}'),
'hash=b16422d09fabdb45d4e4325e4b42d7d6f021d3c3')])
+class RepozoTests(unittest.TestCase):
+
+ def test_importability(self):
+ from ZODB.scripts import repozo
+
def test_suite():
return unittest.TestSuite((
doctest.DocFileSuite(
More information about the Zodb-checkins
mailing list