Code

had commented out some tests
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 14 Jan 2002 06:53:28 +0000 (06:53 +0000)
committerrichard <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

index 4e2db0ce947ee9170048d71a4593c156da9389ca..006b98a7eabb8937a3f4640c69e4deaf37b6ebc2 100644 (file)
@@ -15,7 +15,7 @@
 # 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
@@ -26,14 +26,14 @@ import test_init, test_token, test_mailgw
 
 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)
@@ -41,6 +41,15 @@ def go():
 
 #
 # $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
 #