(self)
| 163 | ) |
| 164 | |
| 165 | def test_bigautofield(self): |
| 166 | with connection.cursor() as cursor: |
| 167 | desc = connection.introspection.get_table_description( |
| 168 | cursor, City._meta.db_table |
| 169 | ) |
| 170 | self.assertIn( |
| 171 | connection.features.introspected_field_types["BigAutoField"], |
| 172 | [connection.introspection.get_field_type(r[1], r) for r in desc], |
| 173 | ) |
| 174 | |
| 175 | def test_smallautofield(self): |
| 176 | with connection.cursor() as cursor: |
nothing calls this directly
no test coverage detected