MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_aliased_value

Method test_aliased_value

test/ext/test_hybrid.py:127–131  ·  view source on GitHub ↗
(self, use_inplace, use_classmethod)

Source from the content-addressed store, hash-verified

125 @testing.variation("use_inplace", [True, False])
126 @testing.variation("use_classmethod", [True, False])
127 def test_aliased_value(self, use_inplace, use_classmethod):
128 A = self._fixture(
129 use_inplace=use_inplace, use_classmethod=use_classmethod
130 )
131 eq_(str(aliased(A).value == 5), "upper(a_1.value) = upper(:upper_1)")
132
133 @testing.variation("use_inplace", [True, False])
134 @testing.variation("use_classmethod", [True, False])

Callers

nothing calls this directly

Calls 3

_fixtureMethod · 0.95
eq_Function · 0.90
aliasedFunction · 0.90

Tested by

no test coverage detected