1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2024-11-22 07:45:39 +00:00
sl-feeds/util/find_test.go
Vincent Batts de7b0fc949
test: prep for testing other folks' ChangeLog.txt
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-02-27 08:57:04 -05:00

14 lines
251 B
Go

package util
import "testing"
func TestFind(t *testing.T) {
paths, err := FindFiles("../changelog", "ChangeLog.txt")
if err != nil {
t.Fatal(err)
}
if len(paths) <= 0 {
t.Errorf("expected to find %d file, but found %d", 1, len(paths))
}
}