MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_uppercase

Method test_uppercase

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

Source from the content-addressed store, hash-verified

575 )
576
577 def test_uppercase(self, connection):
578 t = self.tables.foo
579 self._test(
580 connection,
581 t.insert().values(id=1, data="data", x=5),
582 (1, "data", 5),
583 inserted_primary_key=(1,),
584 )
585
586 def test_uppercase_inline(self, connection):
587 t = self.tables.foo

Callers

nothing calls this directly

Calls 3

_testMethod · 0.95
valuesMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected