(self, connection)
| 445 | s.drop(connection, checkfirst=True) |
| 446 | |
| 447 | def test_checkfirst_metadata(self, connection): |
| 448 | m = MetaData() |
| 449 | Sequence("my_sequence", metadata=m) |
| 450 | m.create_all(connection, checkfirst=False) |
| 451 | assert self._has_sequence(connection, "my_sequence") |
| 452 | m.create_all(connection, checkfirst=True) |
| 453 | m.drop_all(connection, checkfirst=False) |
| 454 | assert not self._has_sequence(connection, "my_sequence") |
| 455 | m.drop_all(connection, checkfirst=True) |
| 456 | |
| 457 | def test_checkfirst_table(self, connection): |
| 458 | m = MetaData() |
nothing calls this directly
no test coverage detected