baseparser_test.go 160 B

1234567891011
  1. package api
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. )
  6. func TestMatch(t *testing.T) {
  7. assert.False(t, matchRegex("v1ddd", versionRegex))
  8. }