pkger/fs/fstest/fstest.go

32 lines
463 B
Go
Raw Normal View History

2019-09-01 05:45:22 +03:00
package fstest
import (
"github.com/markbates/pkger/fs"
)
func Files(fx fs.FileSystem) (TestFiles, error) {
tf := TestFiles{}
for _, f := range fileList {
2019-09-01 22:42:22 +03:00
pt, err := fx.Parse(f)
2019-09-01 06:29:25 +03:00
if err != nil {
return tf, err
}
tf[pt] = TestFile{
Name: pt.Name,
Path: pt,
2019-09-01 05:45:22 +03:00
}
}
return tf, nil
}
var fileList = []string{
"/main.go",
"/go.mod",
"/go.sum",
"/public/index.html",
"/public/images/mark.png",
"/templates/a.txt",
"/templates/b/b.txt",
}