Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorNoah Campbell <noahcampbell@gmail.com>2013-09-21 07:05:20 +0400
committerNoah Campbell <noahcampbell@gmail.com>2013-09-21 07:08:52 +0400
commit8df88496e24c80298ff8d8d1d36a67974e56a7e2 (patch)
tree621d522e87f70a5937f6011dbb6db2e450154d58 /source
parentbffe4baf4297b0fd3b46cbaac2cb4e99577fadf1 (diff)
Fix breaking test cases on unix platform
Rename platform parameter file to agnostic name. Both darwin and linux can share the same paramters.
Diffstat (limited to 'source')
-rw-r--r--source/filesystem_unix_test.go (renamed from source/filesystem_linux_test.go)7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/filesystem_linux_test.go b/source/filesystem_unix_test.go
index d3e09b261..fffc0c3b3 100644
--- a/source/filesystem_linux_test.go
+++ b/source/filesystem_unix_test.go
@@ -1,13 +1,14 @@
+// +build linux,darwin
package source
//
// NOTE, any changes here need to be reflected in filesystem_windows_test.go
//
-var platformBase = "foo/bar/boo/"
+var platformBase = "/base/"
var platformPaths = []TestPath{
{"foobar", "foobar", "aaa", "", ""},
{"b/1file", "1file", "aaa", "b", "b/"},
{"c/d/2file", "2file", "aaa", "d", "c/d/"},
- {"/e/f/3file", "3file", "aaa", "f", "e/f/"},
- {"section\\foo.rss", "foo.rss", "aaa", "section", "section/"},
+ {"/base/e/f/3file", "3file", "aaa", "f", "e/f/"},
+ {"section/foo.rss", "foo.rss", "aaa", "section", "section/"},
}