summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ea6a9ce)
raw | patch | inline | side by side (parent: ea6a9ce)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 11 Sep 2002 01:21:01 +0000 (01:21 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 11 Sep 2002 01:21:01 +0000 (01:21 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1132 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 eab0160b9df89e1ada65f04652314ecf853c84f3..fb524a25e9ab6279d3066abe29ee99daa39f6669 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.17 2002-09-10 01:27:13 richard Exp $
+# $Id: test_init.py,v 1.18 2002-09-11 01:21:01 richard Exp $
import unittest, os, shutil, errno, imp, sys
class metakitClassicTestCase(ClassicTestCase):
backend = 'metakit'
+class gadflyClassicTestCase(ClassicTestCase):
+ backend = 'gadfly'
+
def suite():
l = [
unittest.makeSuite(ClassicTestCase, 'test'),
except:
print 'metakit module not found, skipping metakit DBTestCase'
+ try:
+ import gadfly
+ l.append(unittest.makeSuite(gadflyClassicTestCase, 'test'))
+ except:
+ print 'gadfly module not found, skipping gadfly DBTestCase'
+
return unittest.TestSuite(l)
# vim: set filetype=python ts=4 sw=4 et si