(self)
| 3674 | ) |
| 3675 | |
| 3676 | def test_contains_text(self): |
| 3677 | self.assert_compile( |
| 3678 | column("x").contains(text("y")), |
| 3679 | "x LIKE '%' || y || '%'", |
| 3680 | checkparams={}, |
| 3681 | ) |
| 3682 | |
| 3683 | def test_not_contains(self): |
| 3684 | self.assert_compile( |
nothing calls this directly
no test coverage detected