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 378cae6 commit 96f1442Copy full SHA for 96f1442
gcsfs/tests/test_core.py
@@ -177,6 +177,14 @@ def test_ls_touch(gcs):
177
assert {d["name"] for d in L_d} == {a, b}
178
179
180
+# DO NOT MERGE!
181
+# Note: We assume this test will fail. Once it does in CI, we will update the code to make it pass.
182
+# Only then can this PR be approved and merged.
183
+def test_ls_empty_dir(gcs):
184
+ gcs.mkdir(TEST_BUCKET + "/test")
185
+ assert gcs.ls(TEST_BUCKET + "/test", False) == []
186
+
187
188
def test_rm(gcs):
189
assert not gcs.exists(a)
190
gcs.touch(a)
0 commit comments