Sha256: 7ef3f1d15b541db0cf55dfcd91904c09c56943f42bcec48cbe6fbbb01ef21b67
Contents?: true
Size: 843 Bytes
Versions: 18
Compression:
Stored size: 843 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("connect", &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 Board []string Expected string } } // template applied to above data structure generates the Go test cases var tmpl = `package connect {{.Header}} var testCases = []struct { description string board []string expected string }{ {{range .J.Cases}}{ description: {{printf "%q" .Description}}, board: []string{ {{range $line := .Board}}{{printf "\n %q," $line}}{{end}}}, expected: {{printf "%q" .Expected}}, }, {{end}}} `
Version data entries
18 entries across 18 versions & 1 rubygems