Codebase list golang-github-gobuffalo-packr / f5ff8065-4b79-4dca-9258-00633303cb2a/upstream v2 / packr_test.go
f5ff8065-4b79-4dca-9258-00633303cb2a/upstream

Tree @f5ff8065-4b79-4dca-9258-00633303cb2a/upstream (Download .tar.gz)

packr_test.go @f5ff8065-4b79-4dca-9258-00633303cb2a/upstreamraw · history · blame

package packr

import "github.com/gobuffalo/packr/v2/file"

func qfile(name string, body string) File {
	f, err := file.NewFile(name, []byte(body))
	if err != nil {
		panic(err)
	}
	return f
}