(self)
| 345 | self.assertSuccessfulRawQuery(Author, query, authors, expected_annotations) |
| 346 | |
| 347 | def test_white_space_query(self): |
| 348 | query = " SELECT * FROM raw_query_author" |
| 349 | authors = Author.objects.all() |
| 350 | self.assertSuccessfulRawQuery(Author, query, authors) |
| 351 | |
| 352 | def test_multiple_iterations(self): |
| 353 | query = "SELECT * FROM raw_query_author" |
nothing calls this directly
no test coverage detected