MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / test_empty_insert_pk1

Method test_empty_insert_pk1

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

Source from the content-addressed store, hash-verified

573 table.drop(connection)
574
575 def test_empty_insert_pk1(self, connection):
576 self._test_empty_insert(
577 connection,
578 Table(
579 "a",
580 MetaData(),
581 Column("id", Integer, primary_key=True),
582 ),
583 )
584
585 def test_empty_insert_pk2(self, connection):
586 # now warns due to [ticket:3216]

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected