Sha256: 5690404c35ff2e03eba4462396b8f5be8aa5c1bd570f1f6877706414c58692ee
Contents?: true
Size: 797 Bytes
Versions: 76
Compression:
Stored size: 797 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("hamming", &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 Strand1 string Strand2 string Expected int } } // template applied to above data structure generates the Go test cases var tmpl = `package hamming // Source: {{.Ori}} {{if .Commit}}// Commit: {{.Commit}} {{end}} var testCases = []struct { s1 string s2 string want int }{ {{range .J.Cases}}{ // {{.Description}} {{printf "%q" .Strand1}}, {{printf "%q" .Strand2}}, {{.Expected}}, }, {{end}}} `
Version data entries
76 entries across 76 versions & 1 rubygems