Code

moving tests -> test
[roundup.git] / test / __init__.py
1 # $Id: __init__.py,v 1.1 2001-07-27 06:55:07 richard Exp $
3 import unittest
5 import test_dates, test_schema, test_db
7 def go():
8     suite = unittest.TestSuite((
9         test_dates.suite(),
10         test_schema.suite(),
11         test_db.suite(),
12     ))
13     runner = unittest.TextTestRunner()
14     runner.run(suite)
16 #
17 # $Log: not supported by cvs2svn $
18 # Revision 1.3  2001/07/25 04:34:31  richard
19 # Added id and log to tests files...
20 #
21 #