(self)
| 166 | ) |
| 167 | |
| 168 | def test_annotate_values_count(self): |
| 169 | companies = Company.objects.annotate(foo=RawSQL("%s", ["value"])) |
| 170 | self.assertEqual(companies.count(), 3) |
| 171 | |
| 172 | @skipUnlessDBFeature("supports_boolean_expr_in_select_clause") |
| 173 | def test_filtering_on_annotate_that_uses_q(self): |