mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Add test for ignoring ~$ files
This commit is contained in:
parent
e53bc948a5
commit
2c0ded7f9f
1 changed files with 4 additions and 0 deletions
|
@ -15,6 +15,10 @@ func TestIgnoreDotFiles(t *testing.T) {
|
|||
{".barfoo.md", true},
|
||||
{".md", true},
|
||||
{"", true},
|
||||
{"foobar/barfoo.md~", true},
|
||||
{".foobar/barfoo.md~", true},
|
||||
{"foobar~/barfoo.md", false},
|
||||
{"foobar/bar~foo.md", false},
|
||||
}
|
||||
|
||||
for _, test := range tests {
|
||||
|
|
Loading…
Reference in a new issue