Files
netbird/client/system/info_test.go
2022-05-20 16:59:53 +02:00

14 lines
210 B
Go

package system
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_LocalVersion(t *testing.T) {
got := GetInfo(nil)
want := "development"
assert.Equal(t, want, got.WiretrusteeVersion)
}