(self)
| 136 | self._assert_create([t1, s1], generator, m) |
| 137 | |
| 138 | def test_drop_seq_checkfirst(self): |
| 139 | m, t1, t2, s1, s2 = self._table_seq_fixture() |
| 140 | generator = self._mock_drop_fixture( |
| 141 | True, [t1, t2], item_exists=lambda t: t in ("t1", "s1") |
| 142 | ) |
| 143 | |
| 144 | self._assert_drop([t1, s1], generator, m) |
| 145 | |
| 146 | def test_create_table_index_checkfirst(self): |
| 147 | """create table that doesn't exist should not require a check |
nothing calls this directly
no test coverage detected