Codebase list golang-github-gobuffalo-packr / 94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main v2 / packr_test.go
94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main

Tree @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main (Download .tar.gz)

packr_test.go @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/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
}