MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_seven_a

Method test_seven_a

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

Source from the content-addressed store, hash-verified

1543 )
1544
1545 def test_seven_a(self):
1546 t1 = table("t1", column("a"))
1547 t2 = table("t2", column("b"))
1548 self.assert_compile(
1549 join(t1, t2, onclause=true()),
1550 "t1 JOIN t2 ON 1 = 1",
1551 dialect=self._dialect(False),
1552 )
1553
1554 def test_seven_b(self):
1555 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