Mercurial > p > roundup > code
diff 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 |
line wrap: on
line diff
--- a/test/__init__.py Mon Dec 31 03:07:04 2001 +0000 +++ b/test/__init__.py Mon Dec 31 05:09:20 2001 +0000 @@ -15,12 +15,12 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.7 2001-08-07 00:24:43 richard Exp $ +# $Id: __init__.py,v 1.8 2001-12-31 05:09:20 richard Exp $ import unittest import test_dates, test_schema, test_db, test_multipart, test_mailsplit -import test_init +import test_init, test_token def go(): suite = unittest.TestSuite(( @@ -30,12 +30,16 @@ test_init.suite(), test_multipart.suite(), test_mailsplit.suite(), + test_token.suite(), )) runner = unittest.TextTestRunner() runner.run(suite) # # $Log: not supported by cvs2svn $ +# Revision 1.7 2001/08/07 00:24:43 richard +# stupid typo +# # Revision 1.6 2001/08/07 00:15:51 richard # Added the copyright/license notice to (nearly) all files at request of # Bizar Software.
