mirror of
https://github.com/usememos/memos.git
synced 2025-02-22 22:27:37 +01:00
13 lines
199 B
Go
13 lines
199 B
Go
package version
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetLatestVersion(t *testing.T) {
|
|
_, err := NewRunner(nil, nil).GetLatestVersion()
|
|
require.NoError(t, err)
|
|
}
|