Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/test_model.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_model.py')
-rw-r--r--tests/test_model.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_model.py b/tests/test_model.py
index bb30426..a346510 100644
--- a/tests/test_model.py
+++ b/tests/test_model.py
@@ -107,12 +107,16 @@ class Test(unittest.TestCase):
ds.complete_indexing()
- ds.update(uid, {'title' : 'Random Extras the sequel', 'foobar' : 'whodofoodo',
+ ds.update(uid, {'title' : 'Random Extras the sequel',
+ 'foobar' : 'whodofoodo',
'incept:date' : datetime.datetime.now().isoformat()})
ds.complete_indexing()
- assert ds.find('whodofoodo')[1] == 1
+ # ignored w/o prefix
+ assert ds.find('whodofoodo')[1] == 0
+ # found with it
+ assert ds.find('foobar:whodofoodo')[1] == 1
c = ds.get_properties(uid)
assert 'foobar' in c
assert 'title' in c