Mercurial > p > roundup > code
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 76:3c5b53db3ea0 | 77:5dcc548e1bce |
|---|---|
| 1 import unittest | 1 import unittest |
| 2 | 2 |
| 3 import test_schema, test_db | 3 import test_dates, test_schema, test_db |
| 4 | 4 |
| 5 def go(): | 5 def go(): |
| 6 suite = unittest.TestSuite(( | 6 suite = unittest.TestSuite(( |
| 7 test_dates.suite(), | |
| 7 test_schema.suite(), | 8 test_schema.suite(), |
| 8 test_db.suite(), | 9 test_db.suite(), |
| 9 )) | 10 )) |
| 10 runner = unittest.TextTestRunner() | 11 runner = unittest.TextTestRunner() |
| 11 runner.run(suite) | 12 runner.run(suite) |
