MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _auto_proxy_fixture

Method _auto_proxy_fixture

test/sql/test_values.py:77–84  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

75
76 @testing.fixture
77 def _auto_proxy_fixture(self):
78 c1 = column("q", Integer)
79 c2 = column("p", Integer)
80 t = table("t", c1) # noqa: F841
81
82 v1 = values(c1, c2).data([(1, 2), (3, 4)])
83
84 return c1, c2, t, v1
85
86 def test_auto_proxy_col_ownership(self, _auto_proxy_fixture):
87 """test #10280"""

Callers

nothing calls this directly

Calls 4

columnFunction · 0.90
tableFunction · 0.90
valuesFunction · 0.90
dataMethod · 0.45

Tested by

no test coverage detected