Mercurial > p > roundup > code
comparison test/__init__.py @ 470:9f7320624bc2
Added better tokenising to roundup-admin - handles spaces and stuff.
Can use quoting or backslashes. See the roundup.token pydoc.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 31 Dec 2001 05:09:20 +0000 |
| parents | 18134bffab37 |
| children | a1a44636bace |
comparison
equal
deleted
inserted
replaced
| 469:d35e51360175 | 470:9f7320624bc2 |
|---|---|
| 13 # BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | 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" | 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, | 15 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
| 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. | 16 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 17 # | 17 # |
| 18 # $Id: __init__.py,v 1.7 2001-08-07 00:24:43 richard Exp $ | 18 # $Id: __init__.py,v 1.8 2001-12-31 05:09:20 richard Exp $ |
| 19 | 19 |
| 20 import unittest | 20 import unittest |
| 21 | 21 |
| 22 import test_dates, test_schema, test_db, test_multipart, test_mailsplit | 22 import test_dates, test_schema, test_db, test_multipart, test_mailsplit |
| 23 import test_init | 23 import test_init, test_token |
| 24 | 24 |
| 25 def go(): | 25 def go(): |
| 26 suite = unittest.TestSuite(( | 26 suite = unittest.TestSuite(( |
| 27 test_dates.suite(), | 27 test_dates.suite(), |
| 28 test_schema.suite(), | 28 test_schema.suite(), |
| 29 test_db.suite(), | 29 test_db.suite(), |
| 30 test_init.suite(), | 30 test_init.suite(), |
| 31 test_multipart.suite(), | 31 test_multipart.suite(), |
| 32 test_mailsplit.suite(), | 32 test_mailsplit.suite(), |
| 33 test_token.suite(), | |
| 33 )) | 34 )) |
| 34 runner = unittest.TextTestRunner() | 35 runner = unittest.TextTestRunner() |
| 35 runner.run(suite) | 36 runner.run(suite) |
| 36 | 37 |
| 37 # | 38 # |
| 38 # $Log: not supported by cvs2svn $ | 39 # $Log: not supported by cvs2svn $ |
| 40 # Revision 1.7 2001/08/07 00:24:43 richard | |
| 41 # stupid typo | |
| 42 # | |
| 39 # Revision 1.6 2001/08/07 00:15:51 richard | 43 # Revision 1.6 2001/08/07 00:15:51 richard |
| 40 # Added the copyright/license notice to (nearly) all files at request of | 44 # Added the copyright/license notice to (nearly) all files at request of |
| 41 # Bizar Software. | 45 # Bizar Software. |
| 42 # | 46 # |
| 43 # Revision 1.5 2001/08/05 07:45:27 richard | 47 # Revision 1.5 2001/08/05 07:45:27 richard |
