Codebase list golang-github-gobuffalo-packr / ac2098b8-6137-484d-beed-aa07f668e789/upstream v2 / packr_test.go
ac2098b8-6137-484d-beed-aa07f668e789/upstream

Tree @ac2098b8-6137-484d-beed-aa07f668e789/upstream (Download .tar.gz)

packr_test.go @ac2098b8-6137-484d-beed-aa07f668e789/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
}