()
| 1144 | |
| 1145 | |
| 1146 | def test_localfs_options(): |
| 1147 | # LocalFileSystem instantiation |
| 1148 | LocalFileSystem(use_mmap=False) |
| 1149 | |
| 1150 | with pytest.raises(TypeError): |
| 1151 | LocalFileSystem(xxx=False) |
| 1152 | |
| 1153 | |
| 1154 | def test_localfs_errors(localfs): |
nothing calls this directly
no test coverage detected