Code

728e6c74588d8d68566304f522efb4925978390b
[roundup.git] / tests / __init__.py
1 # $Id: __init__.py,v 1.3 2001-07-25 04:34:31 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 #