From a04a921c2d04d88bd4b6dedd15ed7e1ad119ca09 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Tue, 9 Jan 2018 17:14:32 -0800 Subject: [PATCH] add UNC path to test cases, so I can try to enable it in future --- common/config_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/common/config_test.go b/common/config_test.go index 1a3920733..ad577b3b0 100644 --- a/common/config_test.go +++ b/common/config_test.go @@ -93,6 +93,11 @@ func TestDownloadableURL_WindowsFiles(t *testing.T) { "", true, }, + { // UNC paths; why not? + "\\\\?\\c:\\Temp\\SomeDir\\myfile.txt", + "", + true, + }, { "file:///C:\\Temp\\SomeDir\\myfile.txt", "file:///c:/Temp/SomeDir/myfile.txt",