MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_create_ddl

Method test_create_ddl

test/sql/test_sequences.py:116–122  ·  view source on GitHub ↗
(self, sequence, sql)

Source from the content-addressed store, hash-verified

114 ),
115 )
116 def test_create_ddl(self, sequence, sql):
117 before = sequence.start
118 self.assert_compile(
119 CreateSequence(sequence),
120 ("CREATE SEQUENCE foo_seq " + sql).strip(),
121 )
122 eq_(sequence.start, before)
123
124 def test_drop_ddl(self):
125 self.assert_compile(

Callers

nothing calls this directly

Calls 4

eq_Function · 0.90
CreateSequenceClass · 0.85
assert_compileMethod · 0.80
stripMethod · 0.80

Tested by

no test coverage detected