oh-my-posh/segment_test.go
2020-09-12 08:57:18 +02:00

26 lines
435 B
Go
Executable file

package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestMapSegmentWriterCanMap(t *testing.T) {
sc := &Segment{
Type: Session,
}
env := new(MockedEnvironment)
sc.mapSegmentWithWriter(env)
assert.NotNil(t, sc.writer)
}
func TestMapSegmentWriterCannotMap(t *testing.T) {
sc := &Segment{
Type: "nilwriter",
}
env := new(MockedEnvironment)
sc.mapSegmentWithWriter(env)
assert.Nil(t, sc.writer)
}