Skip to content

Commit 0d7c35e

Browse files
committed
tests
1 parent 479d1ed commit 0d7c35e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

upath/tests/test_core.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,11 @@ def test_copy_path_append():
224224

225225
assert str(path / "folder2" / "folder3") == str(copy_path)
226226

227+
path = UPath("/tmp/folder")
228+
copy_path = UPath(path, "folder2", "folder3")
229+
230+
assert str(path / "folder2" / "folder3") == str(copy_path)
231+
227232

228233
def test_copy_path_append_kwargs():
229234
path = UPath("gcs://bucket/folder", anon=True)

0 commit comments

Comments
 (0)