(self)
| 76 | ) |
| 77 | |
| 78 | def test_modulus(self): |
| 79 | query = QueryString("SELECT price") % 1 |
| 80 | self.assertIsInstance(query, QueryString) |
| 81 | self.assertEqual( |
| 82 | query.compile_string(), |
| 83 | ("SELECT price % $1", [1]), |
| 84 | ) |
| 85 | |
| 86 | def test_like(self): |
| 87 | query = QueryString("strip(name)").like("Python%") |
nothing calls this directly
no test coverage detected