Codebase list golang-github-gobuffalo-packr / cbdaebd v2 / packr_test.go
cbdaebd

Tree @cbdaebd (Download .tar.gz)

packr_test.go @cbdaebdraw · 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
}