Sha256: 6d6e71f15d2157c39263aa06fe2c2b08128648d3476d5d6520ecac5242b7cb79
Contents?: true
Size: 878 Bytes
Versions: 13
Compression:
Stored size: 878 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("transpose", &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 transpose // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} var testCases = []struct { description string input []string expected []string }{ {{range .J.Cases}}{ {{printf "%q" .Description}}, []string{ {{range .Input}} {{printf "%q" .}}, {{end}}}, []string{ {{range .Expected}} {{printf "%q" .}}, {{end}}}, }, {{end}}} `
Version data entries
13 entries across 13 versions & 1 rubygems