Codebase list golang-github-gobuffalo-packr / d6a0115b-bf7c-4d07-9044-364e768bc742/upstream v2 / packr_test.go
d6a0115b-bf7c-4d07-9044-364e768bc742/upstream

Tree @d6a0115b-bf7c-4d07-9044-364e768bc742/upstream (Download .tar.gz)

packr_test.go @d6a0115b-bf7c-4d07-9044-364e768bc742/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
}