|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
18 | | -# $Id: db_test_base.py,v 1.55.2.2 2005-01-04 01:33:04 richard Exp $ |
| 18 | +# $Id: db_test_base.py,v 1.55.2.3 2005-02-13 22:40:53 richard Exp $ |
19 | 19 |
|
20 | 20 | import unittest, os, shutil, errno, imp, sys, time, pprint |
21 | 21 |
|
@@ -920,10 +920,14 @@ def testFilteringNumber(self): |
920 | 920 | def testFilteringString(self): |
921 | 921 | ae, filt = self.filteringSetup() |
922 | 922 | ae(filt(None, {'title': ['one']}, ('+','id'), (None,None)), ['1']) |
| 923 | + ae(filt(None, {'title': ['issue one']}, ('+','id'), (None,None)), |
| 924 | + ['1']) |
| 925 | + ae(filt(None, {'title': ['issue', 'one']}, ('+','id'), (None,None)), |
| 926 | + ['1']) |
923 | 927 | ae(filt(None, {'title': ['issue']}, ('+','id'), (None,None)), |
924 | 928 | ['1','2','3']) |
925 | 929 | ae(filt(None, {'title': ['one', 'two']}, ('+','id'), (None,None)), |
926 | | - ['1', '2']) |
| 930 | + []) |
927 | 931 |
|
928 | 932 | def testFilteringLink(self): |
929 | 933 | ae, filt = self.filteringSetup() |
|
0 commit comments