Sha256: 0542d2a9839f6d6666e622de3e08e80889a21139ee2f7f9b3a31eeddd5af0628
Contents?: true
Size: 896 Bytes
Versions: 13
Compression:
Stored size: 896 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 // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} 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
13 entries across 13 versions & 1 rubygems