summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2bc08c0)
raw | patch | inline | side by side (parent: 2bc08c0)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 11 Jun 2002 04:59:14 +0000 (04:59 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 11 Jun 2002 04:59:14 +0000 (04:59 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@772 57a73879-2fb5-44c3-a270-3262357dd7e2
test/test_init.py | patch | blob | history |
diff --git a/test/test_init.py b/test/test_init.py
index 15280239e5ac468d99ee0da54a2335676d951e2e..d96d300a8ca4f2954c1161429e633ce46194d861 100644 (file)
--- a/test/test_init.py
+++ b/test/test_init.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: test_init.py,v 1.9 2002-05-23 04:26:05 richard Exp $
+# $Id: test_init.py,v 1.10 2002-06-11 04:59:14 richard Exp $
import unittest, os, shutil, errno, imp, sys
except:
print 'bsddb module not found, skipping bsddb DBTestCase'
-# try:
-# import bsddb3
-# l.append(unittest.makeSuite(bsddb3ClassicTestCase, 'test'))
-# l.append(unittest.makeSuite(bsddb3ExtendedTestCase, 'test'))
-# except:
-# print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
+ try:
+ import bsddb3
+ l.append(unittest.makeSuite(bsddb3ClassicTestCase, 'test'))
+ l.append(unittest.makeSuite(bsddb3ExtendedTestCase, 'test'))
+ except:
+ print 'bsddb3 module not found, skipping bsddb3 DBTestCase'
return unittest.TestSuite(l)
#
# $Log: not supported by cvs2svn $
+# Revision 1.9 2002/05/23 04:26:05 richard
+# 'I must run unit tests before committing\n' * 100
+#
# Revision 1.8 2002/05/15 03:27:16 richard
# . fixed SCRIPT_NAME in ZRoundup for instances not at top level of Zope
# (thanks dman)