Codebase list golang-github-gobuffalo-packr / 9b22b559-731d-4e4b-a1c8-17486a888a74/upstream v2 / packr_test.go
9b22b559-731d-4e4b-a1c8-17486a888a74/upstream

Tree @9b22b559-731d-4e4b-a1c8-17486a888a74/upstream (Download .tar.gz)

packr_test.go @9b22b559-731d-4e4b-a1c8-17486a888a74/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
}