mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
97eb9225a7
This supports my personal workflow of using vim which places a temporary file in the same directory as the file I'm editing.
25 lines
463 B
Go
25 lines
463 B
Go
package hugolib
|
|
|
|
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)
|
|
}
|
|
}
|
|
}
|