Codebase list golang-github-gobuffalo-packr / 8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream v2 / packr_test.go
8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream

Tree @8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream (Download .tar.gz)

packr_test.go @8d51ee81-f5e8-468b-bdc0-7e36171ab215/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
}