(self)
| 122 | eq_(sequence.start, before) |
| 123 | |
| 124 | def test_drop_ddl(self): |
| 125 | self.assert_compile( |
| 126 | CreateSequence(Sequence("foo_seq"), if_not_exists=True), |
| 127 | "CREATE SEQUENCE IF NOT EXISTS foo_seq", |
| 128 | ) |
| 129 | |
| 130 | self.assert_compile( |
| 131 | DropSequence(Sequence("foo_seq")), "DROP SEQUENCE foo_seq" |
| 132 | ) |
| 133 | |
| 134 | self.assert_compile( |
| 135 | DropSequence(Sequence("foo_seq"), if_exists=True), |
| 136 | "DROP SEQUENCE IF EXISTS foo_seq", |
| 137 | ) |
| 138 | |
| 139 | |
| 140 | class SequenceExecTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected