Sha256: b7682bac720f6fe2d996a5ae10d3457576110603518868087b11c4a9460e14b1
Contents?: true
Size: 794 Bytes
Versions: 67
Compression:
Stored size: 794 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.json", &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
67 entries across 67 versions & 1 rubygems