Codebase list golang-github-gobuffalo-packr / 756999fe-27c7-4903-9bb2-cb796de5d320/upstream v2 / packr_test.go
756999fe-27c7-4903-9bb2-cb796de5d320/upstream

Tree @756999fe-27c7-4903-9bb2-cb796de5d320/upstream (Download .tar.gz)

packr_test.go @756999fe-27c7-4903-9bb2-cb796de5d320/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
}