Sha256: 6d9974e2428fe0336b830073482265eba73681970d2434d3ecd6dc3aaa7906df
Contents?: true
Size: 817 Bytes
Versions: 137
Compression:
Stored size: 817 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("gigasecond", &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 Cases []struct { Description string Input string Expected string } } } // template applied to above data structure generates the Go test cases var tmpl = `package gigasecond {{.Header}} {{range .J.Cases}}// {{.Description}} var addCases = []struct { description string in string want string }{ {{range .Cases}}{ {{printf "%q" .Description}}, {{printf "%q" .Input}}, {{printf "%q" .Expected}}, }, {{end}}{{end}} } `
Version data entries
137 entries across 137 versions & 1 rubygems