mirror of
https://github.com/vbatts/sl-feeds.git
synced 2024-11-22 07:45:39 +00:00
14 lines
251 B
Go
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))
|
|
}
|
|
}
|