]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Initial revision
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 1 Jul 2005 03:42:16 +0000 (03:42 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 1 Jul 2005 03:42:16 +0000 (03:42 +0000)
test/testbase.py [new file with mode: 0644]

diff --git a/test/testbase.py b/test/testbase.py
new file mode 100644 (file)
index 0000000..5a65fe0
--- /dev/null
@@ -0,0 +1,12 @@
+import unittest
+
+
+class PersistTest(unittest.TestCase):
+    def __init__(self, *args, **params):
+        unittest.TestCase.__init__(self, *args, **params)
+        
+
+def runTests(suite):
+    runner = unittest.TextTestRunner(verbosity = 2, descriptions =1)
+    runner.run(suite)
+