(self)
| 11 | ) |
| 12 | |
| 13 | def test_compile_string(self): |
| 14 | compiled_string, args = self.qs.compile_string() |
| 15 | |
| 16 | self.assertEqual( |
| 17 | compiled_string, "SELECT id FROM band WHERE name = $1" |
| 18 | ) |
| 19 | |
| 20 | self.assertEqual(args, ["Pythonistas"]) |
| 21 | |
| 22 | def test_string(self): |
| 23 | string = self.qs.__str__() |
nothing calls this directly
no test coverage detected