(self)
| 84 | ) |
| 85 | |
| 86 | def test_like(self): |
| 87 | query = QueryString("strip(name)").like("Python%") |
| 88 | self.assertIsInstance(query, QueryString) |
| 89 | self.assertEqual( |
| 90 | query.compile_string(), |
| 91 | ("strip(name) LIKE $1", ["Python%"]), |
| 92 | ) |
| 93 | |
| 94 | def test_ilike(self): |
| 95 | query = QueryString("strip(name)").ilike("Python%") |
nothing calls this directly
no test coverage detected