Code

7e841b3f0eb59b508fd50206623ba29342e7882c
[roundup.git] / test / __init__.py
1 # $Id: __init__.py,v 1.3 2001-07-29 07:01:39 richard Exp $
3 import unittest
5 import test_dates, test_schema, test_db, test_multipart
7 def go():
8     suite = unittest.TestSuite((
9         test_dates.suite(),
10         test_schema.suite(),
11         test_db.suite(),
12         test_multipart.suite(),
13     ))
14     runner = unittest.TextTestRunner()
15     runner.run(suite)
17 #
18 # $Log: not supported by cvs2svn $
19 # Revision 1.2  2001/07/28 06:43:02  richard
20 # Multipart message class has the getPart method now. Added some tests for it.
21 #
22 # Revision 1.1  2001/07/27 06:55:07  richard
23 # moving tests -> test
24 #
25 # Revision 1.3  2001/07/25 04:34:31  richard
26 # Added id and log to tests files...
27 #
28 #
29 # vim: set filetype=python ts=4 sw=4 et si