Sha256: acc834efcd16c169ed7d74f7eb7691192e2cd9fbfed0205aa0e7567830296f81
Contents?: true
Size: 768 Bytes
Versions: 30
Compression:
Stored size: 768 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("luhn", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Valid []struct { Description string Input string Expected bool } } // template applied to above data structure generates the Go test cases var tmpl = `package luhn // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} var testCases = []struct { description string input string ok bool }{ {{range .J.Valid}}{ {{printf "%q" .Description}}, {{printf "%q" .Input}}, {{.Expected}}, }, {{end}} }`
Version data entries
30 entries across 30 versions & 1 rubygems