Codebase list golang-github-gobuffalo-packr / 606d71fd-6871-40bf-839f-70223aef1fb7/upstream v2 / packr_test.go
606d71fd-6871-40bf-839f-70223aef1fb7/upstream

Tree @606d71fd-6871-40bf-839f-70223aef1fb7/upstream (Download .tar.gz)

packr_test.go @606d71fd-6871-40bf-839f-70223aef1fb7/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
}