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