MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_seven_c

Method test_seven_c

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

Source from the content-addressed store, hash-verified

1561 )
1562
1563 def test_seven_c(self):
1564 t1 = table("t1", column("a"))
1565 t2 = table("t2", column("b"))
1566 self.assert_compile(
1567 join(t1, t2, onclause=true()),
1568 "t1 JOIN t2 ON true",
1569 dialect=self._dialect(True),
1570 )
1571
1572 def test_seven_d(self):
1573 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