X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fdjango-ldapdb.git;a=blobdiff_plain;f=examples%2Ftests.py;h=26d07d3ee1649282f4d82d02022dd103b5defd67;hp=e1088520fb65afc7fbcc7859da6632ae15fc572a;hb=326c4e332a9447a6972a0f53f9769a5a3b965fba;hpb=4abdee082b2cb5697cf0e6436df871a36cccdbe6 diff --git a/examples/tests.py b/examples/tests.py index e108852..26d07d3 100644 --- a/examples/tests.py +++ b/examples/tests.py @@ -78,7 +78,7 @@ class GroupTestCase(BaseTestCase): self.assertEquals(g.gid, 1000) self.assertEquals(g.usernames, ['foouser', 'baruser']) - # try to get non-existent entry + # try to filter non-existent entries qs = LdapGroup.objects.filter(name='does_not_exist') self.assertEquals(len(qs), 0) @@ -89,6 +89,7 @@ class GroupTestCase(BaseTestCase): self.assertEquals(g.gid, 1000) self.assertEquals(g.usernames, ['foouser', 'baruser']) + # try to get a non-existent entry self.assertRaises(LdapGroup.DoesNotExist, LdapGroup.objects.get, name='does_not_exist') def test_order_by(self):