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

Method test_eleven

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

Source from the content-addressed store, hash-verified

1441 self.assert_compile(c == 1, "x = :x_1", dialect=self._dialect(False))
1442
1443 def test_eleven(self):
1444 c = column("x", Boolean)
1445 self.assert_compile(
1446 c.is_(true()), "x IS true", dialect=self._dialect(True)
1447 )
1448
1449 def test_twelve(self):
1450 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