(self)
| 338 | ) |
| 339 | |
| 340 | def test_kw(self): |
| 341 | t = text("select * from foo where lala=:bar and hoho=:whee") |
| 342 | t = t.bindparams(bar=4, whee=7) |
| 343 | |
| 344 | self.assert_compile( |
| 345 | t, |
| 346 | "select * from foo where lala=:bar and hoho=:whee", |
| 347 | checkparams={"bar": 4, "whee": 7}, |
| 348 | ) |
| 349 | |
| 350 | def test_positional_plus_kw(self): |
| 351 | t = text("select * from foo where lala=:bar and hoho=:whee") |
nothing calls this directly
no test coverage detected