Codebase list golang-github-gobuffalo-packr / 1a48587d-bb53-4fb4-9166-803b0a544830/upstream v2 / file / resolver / resolver_test.go
1a48587d-bb53-4fb4-9166-803b0a544830/upstream

Tree @1a48587d-bb53-4fb4-9166-803b0a544830/upstream (Download .tar.gz)

resolver_test.go @1a48587d-bb53-4fb4-9166-803b0a544830/upstreamraw · history · blame

package resolver

import "github.com/gobuffalo/packr/v2/file"

func qfile(name string, body string) file.File {
	f, err := file.NewFile(name, []byte(body))
	if err != nil {
		panic(err)
	}
	return f
}