From: richard Date: Wed, 25 Jul 2001 04:10:15 +0000 (+0000) Subject: added date test suite X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b20a9721bf37a9d53d1ffd95ac7bec55921d29ef;p=roundup.git added date test suite git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@82 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/tests/__init__.py b/tests/__init__.py index 9a158bf..658ddec 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,9 +1,10 @@ import unittest -import test_schema, test_db +import test_dates, test_schema, test_db def go(): suite = unittest.TestSuite(( + test_dates.suite(), test_schema.suite(), test_db.suite(), ))