(self)
| 137 | ) |
| 138 | |
| 139 | def test_fetch_mode_raise(self): |
| 140 | authors = list(Author.objects.fetch_mode(RAISE).prefetch_related("first_book")) |
| 141 | authors[0].first_book # No exception, already loaded |
| 142 | |
| 143 | def test_foreignkey_reverse(self): |
| 144 | with self.assertNumQueries(2): |
nothing calls this directly
no test coverage detected