Add test for ignoring ~$ files

This commit is contained in:
Ask Bjørn Hansen 2014-02-28 20:18:06 -08:00 committed by spf13
parent e53bc948a5
commit 2c0ded7f9f

View file

@ -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 {