Codebase list golang-github-gobuffalo-packr / fd8c111c-ff47-49e9-9710-74f120b2f1c0/upstream v2 / packr_test.go
fd8c111c-ff47-49e9-9710-74f120b2f1c0/upstream

Tree @fd8c111c-ff47-49e9-9710-74f120b2f1c0/upstream (Download .tar.gz)

packr_test.go @fd8c111c-ff47-49e9-9710-74f120b2f1c0/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
}