Пример #1
0
func TestVersionStringWithoutLabel(t *testing.T) {
	var (
		ver = version.Establish(1, 0, 0)
		act = ver.String()
		exp = "1.0.0"
	)

	if exp != act {
		t.Errorf("expected string value of version to be %s, got %s", exp, act)
	}
}
Пример #2
0
func TestPatchVersion(t *testing.T) {
	var (
		ver = version.Establish(0, 0, 1)
		act = ver.Patch()
		exp = 1
	)

	if exp != act {
		t.Errorf("expected value of patch version to be %d, got %d", exp, act)
	}
}
Пример #3
0
func TestLabelVersion(t *testing.T) {
	var (
		ver = version.Establish(0, 0, 1, "rc1")
		act = ver.Label()
		exp = "rc1"
	)

	if exp != act {
		t.Errorf("expected value of label version to be %s, got %s", exp, act)
	}
}
Пример #4
0
func TestMinorVersion(t *testing.T) {
	var (
		ver = version.Establish(0, 1, 0)
		act = ver.Minor()
		exp = 1
	)

	if exp != act {
		t.Errorf("expected value of minor version to be %d, got %d", exp, act)
	}
}