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

Method test_four

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

Source from the content-addressed store, hash-verified

1354 )
1355
1356 def test_four(self):
1357 c = column("x", Boolean)
1358 self.assert_compile(
1359 select(c).where(~c),
1360 "SELECT x WHERE NOT x",
1361 dialect=self._dialect(True),
1362 )
1363
1364 def test_four_double(self):
1365 c = column("x", Boolean)

Callers

nothing calls this directly

Calls 5

_dialectMethod · 0.95
columnFunction · 0.90
selectFunction · 0.85
assert_compileMethod · 0.80
whereMethod · 0.45

Tested by

no test coverage detected