status-go/params/version_test.go
Jakub Sokołowski 74e553b847 add test to check that version doesn't start with v
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-10-29 12:53:27 +01:00

20 lines
373 B
Go

package params_test
import (
"io/ioutil"
"path/filepath"
"regexp"
"testing"
)
func TestVersionFormat(t *testing.T) {
data, err := ioutil.ReadFile(filepath.Join("..", "VERSION"))
if err != nil {
t.Error("unable to open VERSION file")
}
matched, _ := regexp.Match(`^\d+\.\d+\.\d+(-[.\w]+)?\n?$`, data)
if !matched {
t.Error("version in incorrect format")
}
}