MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_is_false_literal

Method test_is_false_literal

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

Source from the content-addressed store, hash-verified

1804 self.assert_compile(c.is_(True), "x IS true")
1805
1806 def test_is_false_literal(self):
1807 c = column("x", Boolean)
1808 self.assert_compile(c.is_(False), "x IS false")
1809
1810 def test_and_false_literal_leading(self):
1811 self.assert_compile(and_(False, True), "false")

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
is_Method · 0.45

Tested by

no test coverage detected