Basic test of raw query with a simple database query
(self)
| 134 | ) |
| 135 | |
| 136 | def test_simple_raw_query(self): |
| 137 | class="st">""" |
| 138 | Basic test of raw query with a simple database query |
| 139 | class="st">""" |
| 140 | query = class="st">"SELECT * FROM raw_query_author" |
| 141 | authors = Author.objects.all() |
| 142 | self.assertSuccessfulRawQuery(Author, query, authors) |
| 143 | |
| 144 | def test_raw_query_lazy(self): |
| 145 | class="st">""" |
nothing calls this directly
no test coverage detected