(self, checkfirst)
| 157 | |
| 158 | @_true_seq |
| 159 | def test_create_seq_checkfirst(self, checkfirst): |
| 160 | m, t1, t2, s1, s2 = self._table_seq_fixture() |
| 161 | generator = self._mock_create_fixture( |
| 162 | checkfirst, [t1, t2], item_exists=lambda t: t not in ("t1", "s1") |
| 163 | ) |
| 164 | |
| 165 | self._assert_create([t1, s1], generator, m) |
| 166 | |
| 167 | @_true_seq |
| 168 | def test_drop_seq_checkfirst(self, checkfirst): |
nothing calls this directly
no test coverage detected