X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fdjango-ldapdb.git;a=blobdiff_plain;f=ldapdb%2Ftests.py;h=d64ff4625a354ee00796591174db70cdb27b1ea9;hp=806c764b95dd56a6fe545ba1dfeb33261a993d36;hb=2af7bbb69791fc49de3bb91c5ce77c846434b53e;hpb=aa99c514ad0457d05e95f48de4b0c855a75b363e diff --git a/ldapdb/tests.py b/ldapdb/tests.py index 806c764..d64ff46 100644 --- a/ldapdb/tests.py +++ b/ldapdb/tests.py @@ -37,6 +37,10 @@ class WhereTestCase(TestCase): where.add((Constraint("cn", "cn", None), 'endswith', "test"), AND) self.assertEquals(where.as_sql(), "(cn=*test)") + where = WhereNode() + where.add((Constraint("cn", "cn", None), 'in', ["foo", "bar"]), AND) + self.assertEquals(where.as_sql(), "(|(cn=foo)(cn=bar))") + def test_and(self): where = WhereNode() where.add((Constraint("cn", "cn", None), 'exact', "foo"), AND)