(self)
| 844 | ) |
| 845 | |
| 846 | def test_insert(self): |
| 847 | stmt = self.tables.foo.insert().values( |
| 848 | x=bindparam("x"), data=bindparam("data") |
| 849 | ) |
| 850 | self._assert_raises(stmt, {"data": "data"}) |
| 851 | |
| 852 | def test_select_where(self): |
| 853 | stmt = ( |
nothing calls this directly
no test coverage detected