(self, connection)
| 442 | ) |
| 443 | |
| 444 | def test_checkfirst_sequence(self, connection): |
| 445 | s = normalize_sequence(config, Sequence("my_sequence")) |
| 446 | s.create(connection, checkfirst=False) |
| 447 | assert self._has_sequence(connection, "my_sequence") |
| 448 | s.create(connection, checkfirst=True) |
| 449 | s.drop(connection, checkfirst=False) |
| 450 | assert not self._has_sequence(connection, "my_sequence") |
| 451 | s.drop(connection, checkfirst=True) |
| 452 | |
| 453 | def test_checkfirst_metadata(self, connection): |
| 454 | m = MetaData() |
nothing calls this directly
no test coverage detected