diff options
Diffstat (limited to 'cli/internal/fs/fs_windows_test.go')
| -rw-r--r-- | cli/internal/fs/fs_windows_test.go | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cli/internal/fs/fs_windows_test.go b/cli/internal/fs/fs_windows_test.go deleted file mode 100644 index 4e71e2c..0000000 --- a/cli/internal/fs/fs_windows_test.go +++ /dev/null @@ -1,18 +0,0 @@ -//go:build windows -// +build windows - -package fs - -import "testing" - -func TestDifferentVolumes(t *testing.T) { - p1 := "C:\\some\\path" - p2 := "D:\\other\\path" - contains, err := DirContainsPath(p1, p2) - if err != nil { - t.Errorf("DirContainsPath got error %v, want <nil>", err) - } - if contains { - t.Errorf("DirContainsPath got true, want false") - } -} |
