(self)
| 863 | self._assert_raises(stmt, {"data": "data"}) |
| 864 | |
| 865 | def test_text(self): |
| 866 | stmt = text("select * from foo where x=:x and data=:data1") |
| 867 | self._assert_raises(stmt, {"data1": "data"}) |
| 868 | |
| 869 | def test_required_flag(self): |
| 870 | is_(bindparam("foo").required, True) |
nothing calls this directly
no test coverage detected