Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBenjamin Saller <bcsaller@objectrealms.net>2007-07-04 19:31:52 (GMT)
committer Benjamin Saller <bcsaller@objectrealms.net>2007-07-04 19:31:52 (GMT)
commit0d27344cd91294f948c2a62a61b9f92aba7a4c18 (patch)
tree0b06f2f68ba899d9eeedfa1fdc1e94aac56a1c9c /tests
parent1f285bce14cad1daaa5791aba705d361b59fe08c (diff)
support value in (...) style queries, see query.txt
Diffstat (limited to 'tests')
-rw-r--r--tests/query.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/query.txt b/tests/query.txt
index 9a16eca..e1f3791 100644
--- a/tests/query.txt
+++ b/tests/query.txt
@@ -255,6 +255,17 @@ used in the 'author' field.
>>> assert set(qm.get_uniquevaluesfor('author')) == set(['Benjamin', 'Sarah'])
+Now that we can see a set of possible values it might be nice to
+select any content with properties from a known set. For example
+
+>>> r, c = qm.find(author=['Benjamin', 'Sarah'])
+>>> assert c == 3
+
+By putting the request value in a list we can ask that the value be
+'IN' this collection. All participating values are included in this
+way.
+
+
Now for politeness we shut everything down
>>> qm.stop()
>>> import shutil, os