Codebase list golang-github-gobuffalo-packr / 7e727204-725d-4abc-af4e-63bb6681d94a/main v2 / packr_test.go
7e727204-725d-4abc-af4e-63bb6681d94a/main

Tree @7e727204-725d-4abc-af4e-63bb6681d94a/main (Download .tar.gz)

packr_test.go @7e727204-725d-4abc-af4e-63bb6681d94a/mainraw · 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
}