Sha256: d4b39f074f6610b144a53659318ee63b87d9840776a5d8b0539676d3a39c8ece
Contents?: true
Size: 800 Bytes
Versions: 13
Compression:
Stored size: 800 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
13 entries across 13 versions & 1 rubygems