Codebase list golang-github-gobuffalo-packr / 2caaa424-eb18-4a82-a9c0-39020ed7da64/upstream v2 / packr_test.go
2caaa424-eb18-4a82-a9c0-39020ed7da64/upstream

Tree @2caaa424-eb18-4a82-a9c0-39020ed7da64/upstream (Download .tar.gz)

packr_test.go @2caaa424-eb18-4a82-a9c0-39020ed7da64/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
}