(fs)
| 707 | |
| 708 | |
| 709 | def test_non_path_like_input_raises(fs): |
| 710 | class Path: |
| 711 | pass |
| 712 | |
| 713 | invalid_paths = [1, 1.1, Path(), tuple(), {}, [], lambda: 1, |
| 714 | pathlib.Path()] |
| 715 | for path in invalid_paths: |
| 716 | with pytest.raises(TypeError): |
| 717 | fs.create_dir(path) |
| 718 | |
| 719 | |
| 720 | def test_get_file_info(fs, pathfn): |
nothing calls this directly
no test coverage detected