Sha256: d1b0b78cdd89781fcedb96c7d749bdb1206928c17630cb4865a69e447114e65f
Contents?: true
Size: 752 Bytes
Versions: 71
Compression:
Stored size: 752 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("leap", &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 int Expected bool } } // template applied to above data structure generates the Go test cases var tmpl = `package leap // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} var testCases = []struct { year int expected bool description string }{ {{range .J.Cases}}{ {{.Input}}, {{.Expected}}, {{printf "%q" .Description}}}, {{end}}} `
Version data entries
71 entries across 71 versions & 1 rubygems