Sha256: 04d19f18baaaaabfa493889564d289a840de3812c803636bec45a3926c7fafb3
Contents?: true
Size: 721 Bytes
Versions: 125
Compression:
Stored size: 721 Bytes
Contents
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 {{.Header}} 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
125 entries across 125 versions & 1 rubygems