Beispiel #1
0
 def test_filter_group(self):
     t = TransactionTestCase()
     qs = fixture.group_query_filter()
     result = fixture.filter_group_name().filter(qs, 'ex')
     qs2 = GroupFilter.custom_filter(self, qs, '', 'ex')
     t.assertQuerysetEqual(qs2, [repr(r) for r in result])
Beispiel #2
0
 def test_filter_from_person(self):
     t = TransactionTestCase()
     qs = fixture.from_person_query_filter()
     result = fixture.filter_person_name().filter(qs, 'ex')
     qs2 = FromPersonFilter.custom_filter(self, qs, '', 'ex')
     t.assertQuerysetEqual(qs2, [repr(r) for r in result])