(self)
| 850 | self._assert_raises(stmt, {"data": "data"}) |
| 851 | |
| 852 | def test_select_where(self): |
| 853 | stmt = ( |
| 854 | select(self.tables.foo) |
| 855 | .where(self.tables.foo.c.data == bindparam("data")) |
| 856 | .where(self.tables.foo.c.x == bindparam("x")) |
| 857 | ) |
| 858 | self._assert_raises(stmt, {"data": "data"}) |
| 859 | |
| 860 | @testing.requires.standalone_binds |
| 861 | def test_select_columns(self): |
nothing calls this directly
no test coverage detected