Extra translations are ignored.
(self)
| 292 | self.assertSuccessfulRawQuery(Reviewer, query, reviewers) |
| 293 | |
| 294 | def test_extra_conversions(self): |
| 295 | """Extra translations are ignored.""" |
| 296 | query = "SELECT * FROM raw_query_author" |
| 297 | translations = {"something": "else"} |
| 298 | authors = Author.objects.all() |
| 299 | self.assertSuccessfulRawQuery(Author, query, authors, translations=translations) |
| 300 | |
| 301 | def test_missing_fields(self): |
| 302 | query = "SELECT id, first_name, dob FROM raw_query_author" |
nothing calls this directly
no test coverage detected