MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_other_exprs

Method test_other_exprs

test/sql/test_operators.py:463–467  ·  view source on GitHub ↗
(self, expr, expected)

Source from the content-addressed store, hash-verified

461 argnames="expr, expected",
462 )
463 def test_other_exprs(self, expr, expected):
464 t = table("t", column("q", Integer), column("p", Integer))
465 expr = resolve_lambda(expr, p=t.c.p, q=t.c.q)
466
467 self.assert_compile(expr, expected)
468
469 @testing.combinations(
470 operators.add,

Callers

nothing calls this directly

Calls 4

tableFunction · 0.90
columnFunction · 0.90
resolve_lambdaFunction · 0.90
assert_compileMethod · 0.80

Tested by

no test coverage detected