(self)
| 5367 | Index("a", "b", "c", unknown_y=True) |
| 5368 | |
| 5369 | def test_participating_bad_kw(self): |
| 5370 | with self._fixture(): |
| 5371 | assert_raises_message( |
| 5372 | exc.ArgumentError, |
| 5373 | "Argument 'participating_q_p_x' is not accepted by dialect " |
| 5374 | "'participating' on behalf of " |
| 5375 | "<class 'sqlalchemy.sql.schema.Index'>", |
| 5376 | Index, |
| 5377 | "a", |
| 5378 | "b", |
| 5379 | "c", |
| 5380 | participating_q_p_x=8, |
| 5381 | ) |
| 5382 | |
| 5383 | def test_participating_unknown_schema_item(self): |
| 5384 | with self._fixture(): |
nothing calls this directly
no test coverage detected