chore: implement memo property runner

This commit is contained in:
Steven
2024-08-20 08:07:48 +08:00
parent f4d6675363
commit d1280bc04f
6 changed files with 216 additions and 131 deletions

View File

@ -0,0 +1,12 @@
package version
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestGetLatestVersion(t *testing.T) {
_, err := NewRunner(nil, nil).GetLatestVersion()
require.NoError(t, err)
}