Test cases for ignoreDotFile
authorNoah Campbell <noahcampbell@gmail.com>
Fri, 23 Aug 2013 21:40:02 +0000 (14:40 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Fri, 23 Aug 2013 21:57:21 +0000 (14:57 -0700)
Meant to commit this earlier, but it's a basic unit test.

hugolib/content_directory_test.go

index 8b8d7c4f63891b86d0f069f5d9ab8e48ac9bee2e..ab072e52185ecad6ef98ec48516293ed450e0be7 100644 (file)
@@ -6,9 +6,9 @@ import (
 
 func TestIgnoreDotFiles(t *testing.T) {
        tests := []struct {
-               path string
+               path   string
                ignore bool
-       } {
+       }{
                {"barfoo.md", false},
                {"foobar/barfoo.md", false},
                {"foobar/.barfoo.md", true},