Mercurial > p > roundup > code
diff run_tests @ 753:938edfdeac6e
Sorry about this huge checkin!
It's fixing a lot of related stuff in one go though.
. [SF#541941] changing multilink properties by mail
. [SF#526730] search for messages capability
. [SF#505180] split MailGW.handle_Message
- also changed cgi client since it was duplicating the functionality
. build htmlbase if tests are run using CVS checkout (removed note from
installation.txt)
. don't create an empty message on email issue creation if the email is empty
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 29 May 2002 01:16:17 +0000 |
| parents | d7fe849a7bac |
| children | e5826025eeb7 |
line wrap: on
line diff
--- a/run_tests Tue May 28 11:52:08 2002 +0000 +++ b/run_tests Wed May 29 01:16:17 2002 +0000 @@ -9,7 +9,14 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # -# $Id: run_tests,v 1.6 2002-05-25 07:24:29 rochecompaan Exp $ +# $Id: run_tests,v 1.7 2002-05-29 01:16:16 richard Exp $ + +# make sure we have the htmlbase +try: + from roundup.templates.classic import htmlbase +except ImportError: + import setup + setup.buildTemplates() from test import go import sys @@ -20,6 +27,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.6 2002/05/25 07:24:29 rochecompaan +# oops +# # Revision 1.4 2002/02/14 23:38:12 richard # Fixed the unit tests for the mailgw re: the x-roundup-name header. # Also made the test runner more user-friendly:
