2013-08-12 19:10:38 -04:00
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestIgnoreDotFiles(t *testing.T) {
|
|
|
|
tests := []struct {
|
2013-08-23 17:40:02 -04:00
|
|
|
path string
|
2013-08-12 19:10:38 -04:00
|
|
|
ignore bool
|
2013-08-23 17:40:02 -04:00
|
|
|
}{
|
2013-08-12 19:10:38 -04:00
|
|
|
{"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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|