Codebase list golang-github-gobuffalo-packr / ab14c315-b36f-4cd9-bdbc-fe312647bc18/upstream v2 / packr_test.go
ab14c315-b36f-4cd9-bdbc-fe312647bc18/upstream

Tree @ab14c315-b36f-4cd9-bdbc-fe312647bc18/upstream (Download .tar.gz)

packr_test.go @ab14c315-b36f-4cd9-bdbc-fe312647bc18/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
}