From cdba24ac2f51689195b9c48d675a0659d86f3e65 Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 14 Jan 2002 06:53:28 +0000 Subject: [PATCH] had commented out some tests git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@542 57a73879-2fb5-44c3-a270-3262357dd7e2 --- test/__init__.py | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/test/__init__.py b/test/__init__.py index 4e2db0c..006b98a 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -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 # -- 2.30.2