github.com/sandwich-go/boost@v1.3.29/xos/shell_test.go (about) 1 package xos 2 3 import ( 4 . "github.com/smartystreets/goconvey/convey" 5 "testing" 6 ) 7 8 func TestShell(t *testing.T) { 9 Convey("shell", t, func() { 10 So(GetShell(), ShouldNotBeEmpty) 11 So([]string{"/c", "-c"}, ShouldContain, GetShellOption()) 12 }) 13 }