mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-29 03:23:56 +01:00
14 lines
207 B
Go
14 lines
207 B
Go
|
package system
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func Test_LocalVersion(t *testing.T) {
|
||
|
got := GetInfo()
|
||
|
want := "development"
|
||
|
assert.Equal(t, want, got.WiretrusteeVersion)
|
||
|
}
|