(table1: Table, table2: Table)
| 191 | |
| 192 | @staticmethod |
| 193 | def test_column_not_in_table(table1: Table, table2: Table) -> None: |
| 194 | with pytest.raises(ColumnNotFoundError): |
| 195 | table1.add_index(Index([table2.columns[0]])) |
| 196 | |
| 197 | @staticmethod |
| 198 | def test_ok(table1: Table) -> None: |