From 4b136bd41e2abb4a54157db819220c077ce2a00f Mon Sep 17 00:00:00 2001 From: krau <71133316+krau@users.noreply.github.com> Date: Fri, 4 Jul 2025 16:08:01 +0800 Subject: [PATCH] feat: add test case for nested directory file writing --- storage/webdav/client_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/storage/webdav/client_test.go b/storage/webdav/client_test.go index 8808881..df76bbf 100644 --- a/storage/webdav/client_test.go +++ b/storage/webdav/client_test.go @@ -78,6 +78,10 @@ func TestWriteFile(t *testing.T) { remotePath: "hello.txt", content: "Hello webdav", }, + { + remotePath: "//nested/dir/test.txt", + content: "Nested file", + }, { remotePath: "nested/dir/test.txt", content: "Nested file",