Sha256: 2ee2fbecec99d7878bd2624afdf3a3fe004adf0f4e96c642f4b997c8dd8e6547
Contents?: true
Size: 812 Bytes
Versions: 67
Compression:
Stored size: 812 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("gigasecond.json", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Add struct { Description []string Cases []struct { Input string Expected string } } } // template applied to above data structure generates the Go test cases var tmpl = `package gigasecond // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} {{range .J.Add.Description}}// {{.}} {{end}}var addCases = []struct { in string want string }{ {{range .J.Add.Cases}}{ {{printf "%q" .Input}}, {{printf "%q" .Expected}}, }, {{end}}} `
Version data entries
67 entries across 67 versions & 1 rubygems