MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_uppercase_inline

Method test_uppercase_inline

test/sql/test_insert_exec.py:586–593  ·  view source on GitHub ↗
(self, connection)

Source from the content-addressed store, hash-verified

584 )
585
586 def test_uppercase_inline(self, connection):
587 t = self.tables.foo
588 self._test(
589 connection,
590 t.insert().inline().values(id=1, data="data", x=5),
591 (1, "data", 5),
592 inserted_primary_key=(1,),
593 )
594
595 @testing.crashes(
596 "mssql+pyodbc",

Callers

nothing calls this directly

Calls 4

_testMethod · 0.95
valuesMethod · 0.45
inlineMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected