Sha256: 2448279310d6c6e4b120d47bc8d98b2ef681a3dcb414eea62e4327c9e7409e6a
Contents?: true
Size: 716 Bytes
Versions: 18
Compression:
Stored size: 716 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("roman-numerals", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Cases []struct { Number int Expected string } } // template applied to above data structure generates the Go test cases var tmpl = `package romannumerals {{.Header}} type romanNumeralTest struct { arabic int roman string hasError bool } var romanNumeralTests = []romanNumeralTest { {{range .J.Cases}}{ {{.Number}}, "{{.Expected}}", false}, {{end}}} `
Version data entries
18 entries across 18 versions & 1 rubygems