Sha256: 7e4bdcb5346478f0a78ffdc34d17ecca215aea1d56c91175fa5a7f8aff13ec4f
Contents?: true
Size: 879 Bytes
Versions: 81
Compression:
Stored size: 879 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("pangram", &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 []struct { Cases []oneCase } } // Test cases type oneCase struct { Description string Property string Input struct { Sentence string } Expected bool } // Template to generate test cases. var tmpl = `package pangram {{.Header}} var testCases = []struct { description string input string expected bool }{ {{range .J.Cases}}{{range .Cases}} { description: {{printf "%q" .Description}}, input: {{printf "%q" .Input.Sentence}}, expected: {{printf "%t" .Expected}}, },{{end}}{{end}} } `
Version data entries
81 entries across 81 versions & 1 rubygems