MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_like

Method test_like

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

Source from the content-addressed store, hash-verified

3905 )
3906
3907 def test_like(self):
3908 self.assert_compile(
3909 column("x").like("y"), "x LIKE :x_1", checkparams={"x_1": "y"}
3910 )
3911
3912 def test_like_escape(self):
3913 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