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

Method test_seven_c

test/sql/test_operators.py:1411–1418  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1409 )
1410
1411 def test_seven_c(self):
1412 t1 = table("t1", column("a"))
1413 t2 = table("t2", column("b"))
1414 self.assert_compile(
1415 join(t1, t2, onclause=true()),
1416 "t1 JOIN t2 ON true",
1417 dialect=self._dialect(True),
1418 )
1419
1420 def test_seven_d(self):
1421 t1 = table("t1", column("a"))

Callers

nothing calls this directly

Calls 6

_dialectMethod · 0.95
tableFunction · 0.90
columnFunction · 0.90
joinFunction · 0.90
trueFunction · 0.90
assert_compileMethod · 0.80

Tested by

no test coverage detected