(self, table, using="default")
| 43 | self.assertIn(table, connections[using].introspection.table_names(cursor)) |
| 44 | |
| 45 | def assertTableNotExists(self, table, using="default"): |
| 46 | with connections[using].cursor() as cursor: |
| 47 | self.assertNotIn( |
| 48 | table, connections[using].introspection.table_names(cursor) |
| 49 | ) |
| 50 | |
| 51 | def assertColumnExists(self, table, column, using="default"): |
| 52 | self.assertIn( |
no test coverage detected