Mercurial > p > roundup > code
diff tests/__init__.py @ 77:5dcc548e1bce
added date test suite
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Jul 2001 04:10:15 +0000 |
| parents | b936635f142d |
| children | f1cffcad4903 |
line wrap: on
line diff
--- a/tests/__init__.py Wed Jul 25 04:10:02 2001 +0000 +++ b/tests/__init__.py Wed Jul 25 04:10:15 2001 +0000 @@ -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(), ))
