MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_empty_insert_pk4

Method test_empty_insert_pk4

test/dialect/sqlite/test_dialect.py:666–675  ·  view source on GitHub ↗
(self, connection)

Source from the content-addressed store, hash-verified

664 )
665
666 def test_empty_insert_pk4(self, connection):
667 self._test_empty_insert(
668 connection,
669 Table(
670 "d",
671 MetaData(),
672 Column("x", Integer, primary_key=True),
673 Column("y", Integer, DefaultClause("123")),
674 ),
675 )
676
677 def test_empty_insert_nopk1(self, connection):
678 self._test_empty_insert(

Callers

nothing calls this directly

Calls 5

_test_empty_insertMethod · 0.95
TableClass · 0.90
MetaDataClass · 0.90
ColumnClass · 0.90
DefaultClauseClass · 0.90

Tested by

no test coverage detected