(self, connection)
| 436 | ) |
| 437 | |
| 438 | def test_checkfirst_sequence(self, connection): |
| 439 | s = normalize_sequence(config, Sequence("my_sequence")) |
| 440 | s.create(connection, checkfirst=False) |
| 441 | assert self._has_sequence(connection, "my_sequence") |
| 442 | s.create(connection, checkfirst=True) |
| 443 | s.drop(connection, checkfirst=False) |
| 444 | assert not self._has_sequence(connection, "my_sequence") |
| 445 | s.drop(connection, checkfirst=True) |
| 446 | |
| 447 | def test_checkfirst_metadata(self, connection): |
| 448 | m = MetaData() |
nothing calls this directly
no test coverage detected