(self, checkfirst)
| 319 | |
| 320 | @_false_table |
| 321 | def test_create_collection_nocheck(self, checkfirst): |
| 322 | m, t1, t2, t3, t4, t5 = self._table_fixture() |
| 323 | generator = self._mock_create_fixture( |
| 324 | checkfirst, |
| 325 | [t2, t3, t4], |
| 326 | item_exists=lambda t: t not in ("t2", "t4"), |
| 327 | ) |
| 328 | |
| 329 | self._assert_create_tables([t2, t3, t4], generator, m, checkfirst) |
| 330 | |
| 331 | def test_create_empty_collection(self): |
| 332 | m, t1, t2, t3, t4, t5 = self._table_fixture() |
nothing calls this directly
no test coverage detected