Code

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