You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mir/next_test.go

16 lines
176 B
Go

package main
import (
"testing"
)
func TestIncrMinor(t *testing.T) {
var tests = []struct {
in string
out string
}{
{"v0.0.0", "v0.1.0"},
}
t.Logf("%v", tests)
}