MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_uppercase_implicit

Method test_uppercase_implicit

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

Source from the content-addressed store, hash-verified

606 )
607
608 def test_uppercase_implicit(self, connection):
609 t = self.tables.foo
610 self._test(
611 connection,
612 t.insert().values(data="data", x=5),
613 (testing.db.dialect.default_sequence_base, "data", 5),
614 inserted_primary_key=(testing.db.dialect.default_sequence_base,),
615 )
616
617 def test_uppercase_direct_params(self, connection):
618 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