(self)
| 348 | ) |
| 349 | |
| 350 | def test_positional_plus_kw(self): |
| 351 | t = text("select * from foo where lala=:bar and hoho=:whee") |
| 352 | t = t.bindparams(bindparam("bar", 4), whee=7) |
| 353 | |
| 354 | self.assert_compile( |
| 355 | t, |
| 356 | "select * from foo where lala=:bar and hoho=:whee", |
| 357 | checkparams={"bar": 4, "whee": 7}, |
| 358 | ) |
| 359 | |
| 360 | def test_literal_binds(self): |
| 361 | t = text("select * from foo where lala=:bar and hoho=:whee") |
nothing calls this directly
no test coverage detected