comparison test/__init__.py @ 205:da2e5d340e14

Added tests for instance initialisation
author Richard Jones <richard@users.sourceforge.net>
date Sun, 05 Aug 2001 07:45:27 +0000
parents eda506860b32
children d45384bc6420
comparison
equal deleted inserted replaced
204:c1461733cbf9 205:da2e5d340e14
1 # $Id: __init__.py,v 1.4 2001-08-03 07:18:22 richard Exp $ 1 # $Id: __init__.py,v 1.5 2001-08-05 07:45:27 richard Exp $
2 2
3 import unittest 3 import unittest
4 4
5 import test_dates, test_schema, test_db, test_multipart, test_mailsplit 5 import test_dates, test_schema, test_db, test_multipart, test_mailsplit
6 import test_init
6 7
7 def go(): 8 def go():
8 suite = unittest.TestSuite(( 9 suite = unittest.TestSuite((
9 test_dates.suite(), 10 test_dates.suite(),
10 test_schema.suite(), 11 test_schema.suite(),
11 test_db.suite(), 12 test_db.suite(),
13 test_init.suite(),
12 test_multipart.suite(), 14 test_multipart.suite(),
13 test_mailsplit.suite(), 15 test_mailsplit.suite(),
14 )) 16 ))
15 runner = unittest.TextTestRunner() 17 runner = unittest.TextTestRunner()
16 runner.run(suite) 18 runner.run(suite)
17 19
18 # 20 #
19 # $Log: not supported by cvs2svn $ 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 #
20 # Revision 1.3 2001/07/29 07:01:39 richard 26 # 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 :) 27 # Added vim command to all source so that we don't get no steenkin' tabs :)
22 # 28 #
23 # Revision 1.2 2001/07/28 06:43:02 richard 29 # Revision 1.2 2001/07/28 06:43:02 richard
24 # Multipart message class has the getPart method now. Added some tests for it. 30 # Multipart message class has the getPart method now. Added some tests for it.

Roundup Issue Tracker: http://roundup-tracker.org/