We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a678d07 commit da22d22Copy full SHA for da22d22
fsspec/implementations/tests/test_reference.py
@@ -28,8 +28,11 @@ def test_simple(server):
28
h = fsspec.filesystem("http")
29
fs = fsspec.filesystem("reference", fo=refs, fs=h)
30
31
+ assert fs.fss == {"http": h, None: h}
32
assert fs.cat("a") == b"data"
33
34
assert fs.cat("b") == data[:5]
35
36
assert fs.cat("c") == data[1 : 1 + 5]
37
assert fs.cat("d") == b"hello"
38
assert fs.cat("e") == json_impl.dumps(refs["e"]).encode("utf-8")
0 commit comments