()
| 597 | |
| 598 | @pytest.mark.pandas |
| 599 | def test_duplicate_columns_pandas(): |
| 600 | |
| 601 | # https://github.com/wesm/feather/issues/53 |
| 602 | # not currently able to handle duplicate columns |
| 603 | df = pd.DataFrame(np.arange(12).reshape(4, 3), |
| 604 | columns=list('aaa')).copy() |
| 605 | _assert_error_on_write(df, ValueError) |
| 606 | |
| 607 | |
| 608 | def test_duplicate_columns(): |
nothing calls this directly
no test coverage detected