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

Method test_not_like

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

Source from the content-addressed store, hash-verified

3751 )
3752
3753 def test_not_like(self):
3754 self.assert_compile(
3755 column("x").not_like("y"),
3756 "x NOT LIKE :x_1",
3757 checkparams={"x_1": "y"},
3758 )
3759
3760 def test_not_like_escape(self):
3761 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
not_likeMethod · 0.45

Tested by

no test coverage detected