Codebase list golang-github-gobuffalo-packr / 26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream v2 / packr_test.go
26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream

Tree @26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream (Download .tar.gz)

packr_test.go @26ec37e3-c9b1-4045-a350-a767ed6a285c/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
}