(self)
| 918 | self._assert_raises(stmt, {"data": "data"}) |
| 919 | |
| 920 | def test_select_where(self): |
| 921 | stmt = ( |
| 922 | select(self.tables.foo) |
| 923 | .where(self.tables.foo.c.data == bindparam("data")) |
| 924 | .where(self.tables.foo.c.x == bindparam("x")) |
| 925 | ) |
| 926 | self._assert_raises(stmt, {"data": "data"}) |
| 927 | |
| 928 | @testing.requires.standalone_binds |
| 929 | def test_select_columns(self): |
nothing calls this directly
no test coverage detected