Sha256: 59500580f35a46c7b3b0aa1cab501dddc072e77586006c835f6f7d10127d5863
Contents?: true
Size: 757 Bytes
Versions: 67
Compression:
Stored size: 757 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.json", &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
67 entries across 67 versions & 1 rubygems