Sha256: 5910ba38b08b72d84585ac77c8895079838e42f3ef8ea0739e560665cdfb969e
Contents?: true
Size: 802 Bytes
Versions: 67
Compression:
Stored size: 802 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.json", &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
67 entries across 67 versions & 1 rubygems