Sha256: 2519317e1001e085559a1549650d31a842c4c20903f8f935a1606504ec8228b0
Contents?: true
Size: 954 Bytes
Versions: 81
Compression:
Stored size: 954 Bytes
Contents
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("pig-latin", &j, t); err != nil { log.Fatal(err) } } // The JSON structure we expect to be able to unmarshal into type js struct { Exercise string Version string Cases []oneLevel } // Test levels type oneLevel struct { Description string Cases []oneCase } // Test cases type oneCase struct { Description string Property string Input struct { Phrase string } Expected string } // Template to generate test cases. var tmpl = `package piglatin {{.Header}} var testCases = []struct { description string input string expected string }{ {{range .J.Cases}} {{range .Cases}} { description: {{printf "%q" .Description}}, input: {{printf "%#v" .Input.Phrase}}, expected: {{printf "%#v" .Expected}}, },{{end}}{{end}} } `
Version data entries
81 entries across 81 versions & 1 rubygems