shithub: hugo

ref: ae15ff0968856d3a18ee08b7d9970a9218106755
dir: /source/content_directory_test.go/

View raw version
package source

import (
	"testing"
)

func TestIgnoreDotFiles(t *testing.T) {
	tests := []struct {
		path   string
		ignore bool
	}{
		{"barfoo.md", false},
		{"foobar/barfoo.md", false},
		{"foobar/.barfoo.md", true},
		{".barfoo.md", true},
		{".md", true},
		{"", true},
	}

	for _, test := range tests {
		if ignored := ignoreDotFile(test.path); test.ignore != ignored {
			t.Errorf("File not ignored.  Expected: %t, got: %t", test.ignore, ignored)
		}
	}
}