()
| 614 | |
| 615 | @pytest.mark.pandas |
| 616 | def test_unsupported(): |
| 617 | # https://github.com/wesm/feather/issues/240 |
| 618 | # serializing actual python objects |
| 619 | |
| 620 | # custom python objects |
| 621 | class A: |
| 622 | pass |
| 623 | |
| 624 | df = pd.DataFrame({'a': [A(), A()]}) |
| 625 | _assert_error_on_write(df, ValueError) |
| 626 | |
| 627 | # non-strings |
| 628 | df = pd.DataFrame({'a': ['a', 1, 2.0]}) |
| 629 | _assert_error_on_write(df, TypeError) |
| 630 | |
| 631 | |
| 632 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected