(
self, checkfirst, tables, item_exists=lambda item: False
)
| 41 | ) |
| 42 | |
| 43 | def _mock_create_fixture( |
| 44 | self, checkfirst, tables, item_exists=lambda item: False |
| 45 | ): |
| 46 | connection = self._mock_connection(item_exists) |
| 47 | |
| 48 | return SchemaGenerator( |
| 49 | connection.dialect, |
| 50 | connection, |
| 51 | checkfirst=checkfirst, |
| 52 | tables=tables, |
| 53 | ) |
| 54 | |
| 55 | def _mock_drop_fixture( |
| 56 | self, checkfirst, tables, item_exists=lambda item: True |
no test coverage detected