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