(version)
| 529 | @pytest.mark.skipif(not os.path.supports_unicode_filenames, |
| 530 | reason='unicode filenames not supported') |
| 531 | def test_unicode_filename(version): |
| 532 | # GH #209 |
| 533 | name = (b'Besa_Kavaj\xc3\xab.feather').decode('utf-8') |
| 534 | df = pd.DataFrame({'foo': [1, 2, 3, 4]}) |
| 535 | _check_pandas_roundtrip(df, path=random_path(prefix=name), |
| 536 | version=version) |
| 537 | |
| 538 | |
| 539 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected