(self)
| 46 | ) |
| 47 | |
| 48 | def test_no_strings(self): |
| 49 | with expect_raises_message( |
| 50 | exc.ArgumentError, r"pep-750 Tstring \(e.g. t'...'\) expected" |
| 51 | ): |
| 52 | tstring("select * from table") # type: ignore |
| 53 | |
| 54 | def test_tstring_literal_passthrough(self): |
| 55 | stmt = tstring(t"select * from foo where lala = bar") |
nothing calls this directly
no test coverage detected