Sha256: 80226c56f41bd42cac616945188c5aec2b23a96247847a6f0f7070635f0ff3fb

Contents?: true

Size: 771 Bytes

Versions: 4

Compression:

Stored size: 771 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("luhn", &j, t); err != nil {
		log.Fatal(err)
	}
}

// The JSON structure we expect to be able to unmarshal into
type js struct {
	Valid []struct {
		Description string
		Input       string
		Expected    bool
	}
}

// template applied to above data structure generates the Go test cases
var tmpl = `package luhn

// Source: {{.Ori}}
{{if .Commit}}// Commit: {{.Commit}}
{{end}}

var testCases = []struct {
	description string
	input       string
	ok			bool
}{
{{range .J.Valid}}{
	{{printf "%q" .Description}},
	{{printf "%q" .Input}},
	{{.Expected}},
},
{{end}}
}`

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
trackler-2.0.8.47 tracks/go/exercises/luhn/.meta/gen.go
trackler-2.0.8.46 tracks/go/exercises/luhn/.meta/gen.go
trackler-2.0.8.45 tracks/go/exercises/luhn/.meta/gen.go
trackler-2.0.8.44 tracks/go/exercises/luhn/.meta/gen.go