Codebase list golang-github-gobuffalo-packr / 46c43b1d-22a5-4035-8595-8e88991a7e01/upstream v2 / packr_test.go
46c43b1d-22a5-4035-8595-8e88991a7e01/upstream

Tree @46c43b1d-22a5-4035-8595-8e88991a7e01/upstream (Download .tar.gz)

packr_test.go @46c43b1d-22a5-4035-8595-8e88991a7e01/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
}