Sha256: 90c03261279b267309b0a2b76f258c740d66b839eca88415fbc84cb44c217bda
Contents?: true
Size: 857 Bytes
Versions: 101
Compression:
Stored size: 857 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("acronym", &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 Property string Input struct { Phrase string } Expected string } } } // template applied to above data structure generates the Go test cases var tmpl = `package acronym {{.Header}} type acronymTest struct { input string expected string } var stringTestCases = []acronymTest { {{range .J.Cases}} {{range .Cases}}{ input: {{printf "%q" .Input.Phrase }}, expected: {{printf "%q" .Expected }}, }, {{end}}{{end}} } `
Version data entries
101 entries across 101 versions & 1 rubygems