Codebase list golang-github-gobuffalo-packr / b273c92c-7ad7-4b42-9f5f-d863fa0fbeba/upstream v2 / packr_test.go
b273c92c-7ad7-4b42-9f5f-d863fa0fbeba/upstream

Tree @b273c92c-7ad7-4b42-9f5f-d863fa0fbeba/upstream (Download .tar.gz)

packr_test.go @b273c92c-7ad7-4b42-9f5f-d863fa0fbeba/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
}