Code

aa8f8b5e63e24128c9dda323a012ae47db213b47
[roundup.git] / test / __init__.py
1 # $Id: __init__.py,v 1.5 2001-08-05 07:45:27 richard Exp $
3 import unittest
5 import test_dates, test_schema, test_db, test_multipart, test_mailsplit
6 import test_init
8 def go():
9     suite = unittest.TestSuite((
10         test_dates.suite(),
11         test_schema.suite(),
12         test_db.suite(),
13         test_init.suite(),
14         test_multipart.suite(),
15         test_mailsplit.suite(),
16     ))
17     runner = unittest.TextTestRunner()
18     runner.run(suite)
20 #
21 # $Log: not supported by cvs2svn $
22 # Revision 1.4  2001/08/03 07:18:22  richard
23 # Implemented correct mail splitting (was taking a shortcut). Added unit
24 # tests. Also snips signatures now too.
25 #
26 # Revision 1.3  2001/07/29 07:01:39  richard
27 # Added vim command to all source so that we don't get no steenkin' tabs :)
28 #
29 # Revision 1.2  2001/07/28 06:43:02  richard
30 # Multipart message class has the getPart method now. Added some tests for it.
31 #
32 # Revision 1.1  2001/07/27 06:55:07  richard
33 # moving tests -> test
34 #
35 # Revision 1.3  2001/07/25 04:34:31  richard
36 # Added id and log to tests files...
37 #
38 #
39 # vim: set filetype=python ts=4 sw=4 et si