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

Method test_not_ilike

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

Source from the content-addressed store, hash-verified

3772 )
3773
3774 def test_not_ilike(self):
3775 self.assert_compile(
3776 column("x").not_ilike("y"),
3777 "lower(x) NOT LIKE lower(:x_1)",
3778 checkparams={"x_1": "y"},
3779 )
3780
3781 def test_not_ilike_escape(self):
3782 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
not_ilikeMethod · 0.45

Tested by

no test coverage detected