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

Method test_like

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

Source from the content-addressed store, hash-verified

3711 )
3712
3713 def test_like(self):
3714 self.assert_compile(
3715 column("x").like("y"), "x LIKE :x_1", checkparams={"x_1": "y"}
3716 )
3717
3718 def test_like_escape(self):
3719 self.assert_compile(

Callers

nothing calls this directly

Calls 3

columnFunction · 0.90
assert_compileMethod · 0.80
likeMethod · 0.45

Tested by

no test coverage detected