summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fc17417)
raw | patch | inline | side by side (parent: fc17417)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 14 Jan 2002 06:53:28 +0000 (06:53 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Mon, 14 Jan 2002 06:53:28 +0000 (06:53 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@542 57a73879-2fb5-44c3-a270-3262357dd7e2
test/__init__.py | patch | blob | history |
diff --git a/test/__init__.py b/test/__init__.py
index 4e2db0ce947ee9170048d71a4593c156da9389ca..006b98a7eabb8937a3f4640c69e4deaf37b6ebc2 100644 (file)
--- a/test/__init__.py
+++ b/test/__init__.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: __init__.py,v 1.11 2002-01-14 02:20:15 richard Exp $
+# $Id: __init__.py,v 1.12 2002-01-14 06:53:28 richard Exp $
import unittest
import os, tempfile
def go():
suite = unittest.TestSuite((
-# test_dates.suite(),
-# test_schema.suite(),
+ test_dates.suite(),
+ test_schema.suite(),
test_db.suite(),
-# test_init.suite(),
-# test_multipart.suite(),
-# test_mailsplit.suite(),
+ test_init.suite(),
+ test_multipart.suite(),
+ test_mailsplit.suite(),
test_mailgw.suite(),
-# test_token.suite(),
+ test_token.suite(),
))
runner = unittest.TextTestRunner()
result = runner.run(suite)
#
# $Log: not supported by cvs2svn $
+# Revision 1.11 2002/01/14 02:20:15 richard
+# . changed all config accesses so they access either the instance or the
+# config attriubute on the db. This means that all config is obtained from
+# instance_config instead of the mish-mash of classes. This will make
+# switching to a ConfigParser setup easier too, I hope.
+#
+# At a minimum, this makes migration a _little_ easier (a lot easier in the
+# 0.5.0 switch, I hope!)
+#
# Revision 1.10 2002/01/05 02:09:46 richard
# make setup abort if tests fail
#