Sha256: 2245fc92894c10b1f14955aac456f2887ec0bef45b4ff646f5500114e411799f
Contents?: true
Size: 852 Bytes
Versions: 85
Compression:
Stored size: 852 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 struct { Birthdate 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.Birthdate}}, {{printf "%q" .Expected}}, }, {{end}}{{end}} } `
Version data entries
85 entries across 85 versions & 1 rubygems