Codebase list golang-github-gobuffalo-packr / upstream/1.30.1 v2 / packr_test.go
upstream/1.30.1

Tree @upstream/1.30.1 (Download .tar.gz)

packr_test.go @upstream/1.30.1raw · 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
}