X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;ds=sidebyside;f=ldapdb%2Ftests.py;h=d64ff4625a354ee00796591174db70cdb27b1ea9;hb=2af7bbb69791fc49de3bb91c5ce77c846434b53e;hp=806c764b95dd56a6fe545ba1dfeb33261a993d36;hpb=85099b38b796976f9a9f3a86f094e37548fd47f8;p=matthijs%2Fupstream%2Fdjango-ldapdb.git 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)