(self)
| 36 | """ |
| 37 | |
| 38 | def test_add(self): |
| 39 | query = QueryString("SELECT price") + 1 |
| 40 | self.assertIsInstance(query, QueryString) |
| 41 | self.assertEqual( |
| 42 | query.compile_string(), |
| 43 | ("SELECT price + $1", [1]), |
| 44 | ) |
| 45 | |
| 46 | def test_multiply(self): |
| 47 | query = QueryString("SELECT price") * 2 |
nothing calls this directly
no test coverage detected