Mercurial > p > roundup > code
diff test/db_test_base.py @ 2533:0a63854816ee
add test for latest bugfix
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sat, 03 Jul 2004 22:43:59 +0000 |
| parents | 091711fb2f8c |
| children | 70ede89e8056 |
line wrap: on
line diff
--- a/test/db_test_base.py Sat Jul 03 22:40:27 2004 +0000 +++ b/test/db_test_base.py Sat Jul 03 22:43:59 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: db_test_base.py,v 1.37 2004-07-02 05:22:09 richard Exp $ +# $Id: db_test_base.py,v 1.38 2004-07-03 22:43:59 richard Exp $ import unittest, os, shutil, errno, imp, sys, time, pprint @@ -881,6 +881,8 @@ ae(filt(None, {'assignedto': None}, ('+','id'), (None,None)), ['3','4']) ae(filt(None, {'assignedto': ['-1', None]}, ('+','id'), (None,None)), ['3','4']) + ae(filt(None, {'assignedto': ['1', None]}, ('+','id'), (None,None)), + ['1', '3','4']) def testFilteringRetired(self): ae, filt = self.filteringSetup()
