Code

Added the copyright/license notice to (nearly) all files at request of
[roundup.git] / test / __init__.py
1 #
2 # Copyright (c) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/)
3 # This module is free software, and you may redistribute it and/or modify
4 # under the same terms as Python, so long as this copyright message and
5 # disclaimer are retained in their original form.
6 #
7 # IN NO EVENT SHALL THE BIZAR SOFTWARE PTY LTD BE LIABLE TO ANY PARTY FOR
8 # DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
9 # OUT OF THE USE OF THIS CODE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
10 # POSSIBILITY OF SUCH DAMAGE.
11 #
12 # BIZAR SOFTWARE PTY LTD SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
14 # FOR A PARTICULAR PURPOSE.  THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17
18 # $Id: __init__.py,v 1.6 2001-08-07 00:15:51 richard Exp $
20 import unittest
22 import test_dates, test_schema, test_db, test_multipart, test_mailsplit
23 import test_init
25 def go():
26     suite = unittest.TestSuite((
27         test_dates.suite(),
28         test_schema.suite(),
29         test_db.suite(),
30         test_init.suite(),
31         test_multipart.suite(),
32         test_mailsplit.suite(),
33     ))
34     runner = unittest.TextTestRunner()
35     runner.run(suite)
37 #
38 # $Log: not supported by cvs2svn $
39 # Revision 1.5  2001/08/05 07:45:27  richard
40 # Added tests for instance initialisation
41 #
42 # Revision 1.4  2001/08/03 07:18:22  richard
43 # Implemented correct mail splitting (was taking a shortcut). Added unit
44 # tests. Also snips signatures now too.
45 #
46 # Revision 1.3  2001/07/29 07:01:39  richard
47 # Added vim command to all source so that we don't get no steenkin' tabs :)
48 #
49 # Revision 1.2  2001/07/28 06:43:02  richard
50 # Multipart message class has the getPart method now. Added some tests for it.
51 #
52 # Revision 1.1  2001/07/27 06:55:07  richard
53 # moving tests -> test
54 #
55 # Revision 1.3  2001/07/25 04:34:31  richard
56 # Added id and log to tests files...
57 #
58 #
59 # vim: set filetype=python ts=4 sw=4 et si