Sha256: ceddc0cb261673b08f08296035a71779b66d1ee420f472f834d8e83c966d419f
Contents?: true
Size: 789 Bytes
Versions: 76
Compression:
Stored size: 789 Bytes
Contents
// +build ignore package main import ( "log" "text/template" "../../gen" ) func main() { t, err := template.New("").Parse(tmpl) if err != nil { log.Fatal(err) } var j js if err := gen.Gen("bob", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Cases []struct { Description string Input string Expected string } } // template applied to above data structure generates the Go test cases var tmpl = `package bob // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} var testCases = []struct { description string input string expected string }{ {{range .J.Cases}}{ {{printf "%q" .Description}}, {{printf "%q" .Input}}, {{printf "%q" .Expected}}, }, {{end}}} `
Version data entries
76 entries across 76 versions & 1 rubygems