MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_eleven

Method test_eleven

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

Source from the content-addressed store, hash-verified

1593 self.assert_compile(c == 1, "x = :x_1", dialect=self._dialect(False))
1594
1595 def test_eleven(self):
1596 c = column("x", Boolean)
1597 self.assert_compile(
1598 c.is_(true()), "x IS true", dialect=self._dialect(True)
1599 )
1600
1601 def test_twelve(self):
1602 c = column("x", Boolean)

Callers

nothing calls this directly

Calls 5

_dialectMethod · 0.95
columnFunction · 0.90
trueFunction · 0.90
assert_compileMethod · 0.80
is_Method · 0.45

Tested by

no test coverage detected