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 da22d22 commit 929fa28Copy full SHA for 929fa28
fsspec/implementations/tests/test_reference.py
@@ -28,6 +28,16 @@ def test_simple(server):
28
h = fsspec.filesystem("http")
29
fs = fsspec.filesystem("reference", fo=refs, fs=h)
30
31
+ assert {
32
+ "protocol": h.protocol,
33
+ "module": h.__class__.__module__,
34
+ "name": h.__class__.__name__,
35
+ } == {
36
+ "protocol": "http",
37
+ "module": "fsspec.implementations.http",
38
+ "name": "HTTPFileSystem",
39
+ }
40
+
41
assert fs.fss == {"http": h, None: h}
42
assert fs.cat("a") == b"data"
43
0 commit comments