mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-06-02 03:25:31 +08:00
12 lines
160 B
Go
12 lines
160 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import (
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestMatch(t *testing.T) {
|
||
|
|
assert.False(t, matchRegex("v1ddd", versionRegex))
|
||
|
|
}
|