harness-drone/version/version_test.go
2022-03-08 17:03:37 +00:00

16 lines
384 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
//go:build !oss
// +build !oss
package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "2.11.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}