Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions gcsfs/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,14 @@ def test_ls_touch(gcs):
assert {d["name"] for d in L_d} == {a, b}


# DO NOT MERGE!
# Note: We assume this test will fail. Once it does in CI, we will update the code to make it pass.
# Only then can this PR be approved and merged.
def test_ls_empty_dir(gcs):
gcs.mkdir(TEST_BUCKET + "/test")
assert gcs.ls(TEST_BUCKET + "/test", False) == []


def test_rm(gcs):
assert not gcs.exists(a)
gcs.touch(a)
Expand Down