mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
13 lines
209 B
Go
13 lines
209 B
Go
|
package versionchecker
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestGetLatestVersion(t *testing.T) {
|
||
|
_, err := NewVersionChecker(nil).GetLatestVersion()
|
||
|
require.NoError(t, err)
|
||
|
}
|