MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_create_ddl

Method test_create_ddl

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

Source from the content-addressed store, hash-verified

120 ),
121 )
122 def test_create_ddl(self, sequence, sql):
123 before = sequence.start
124 self.assert_compile(
125 CreateSequence(sequence),
126 ("CREATE SEQUENCE foo_seq " + sql).strip(),
127 )
128 eq_(sequence.start, before)
129
130 def test_drop_ddl(self):
131 self.assert_compile(

Callers

nothing calls this directly

Calls 3

eq_Function · 0.90
CreateSequenceClass · 0.85
assert_compileMethod · 0.80

Tested by

no test coverage detected