mirror of
https://github.com/usememos/memos.git
synced 2025-02-23 22:57:54 +01: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)
|
||
|
}
|