oh-my-posh/segment_os_test.go
2020-10-08 20:14:55 +02:00

25 lines
434 B
Go

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestOsInfo(t *testing.T) {
env := new(MockedEnvironment)
env.On("getRuntimeGOOS", nil).Return("windows")
props := &properties{
values: map[Property]interface{}{Windows: "win"},
foreground: "#fff",
background: "#000",
}
osInfo := &osInfo{
env: env,
props: props,
}
want := "win"
got := osInfo.string()
assert.Equal(t, want, got)
}