comparison test/__init__.py @ 110:19686b60e410

Multipart message class has the getPart method now. Added some tests for it.
author Richard Jones <richard@users.sourceforge.net>
date Sat, 28 Jul 2001 06:43:02 +0000
parents fa44da8d9df2
children 0791d13baea7
comparison
equal deleted inserted replaced
109:00b13b82adc1 110:19686b60e410
1 # $Id: __init__.py,v 1.1 2001-07-27 06:55:07 richard Exp $ 1 # $Id: __init__.py,v 1.2 2001-07-28 06:43:02 richard Exp $
2 2
3 import unittest 3 import unittest
4 4
5 import test_dates, test_schema, test_db 5 import test_dates, test_schema, test_db, test_multipart
6 6
7 def go(): 7 def go():
8 suite = unittest.TestSuite(( 8 suite = unittest.TestSuite((
9 test_dates.suite(), 9 test_dates.suite(),
10 test_schema.suite(), 10 test_schema.suite(),
11 test_db.suite(), 11 test_db.suite(),
12 test_multipart.suite(),
12 )) 13 ))
13 runner = unittest.TextTestRunner() 14 runner = unittest.TextTestRunner()
14 runner.run(suite) 15 runner.run(suite)
15 16
16 # 17 #
17 # $Log: not supported by cvs2svn $ 18 # $Log: not supported by cvs2svn $
19 # Revision 1.1 2001/07/27 06:55:07 richard
20 # moving tests -> test
21 #
18 # Revision 1.3 2001/07/25 04:34:31 richard 22 # Revision 1.3 2001/07/25 04:34:31 richard
19 # Added id and log to tests files... 23 # Added id and log to tests files...
20 # 24 #
21 # 25 #

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