github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/cf/ssh/terminal/helper_test.go (about) 1 package terminal_test 2 3 import ( 4 "github.com/liamawhite/cli-with-i18n/cf/ssh/terminal" 5 6 . "github.com/onsi/ginkgo" 7 . "github.com/onsi/gomega" 8 ) 9 10 var _ = Describe("Helper", func() { 11 var helper terminal.TerminalHelper 12 13 BeforeEach(func() { 14 helper = terminal.DefaultHelper() 15 }) 16 17 Describe("DefaultTerminalHelper", func() { 18 It("returns a terminal helper", func() { 19 Expect(helper).NotTo(BeNil()) 20 }) 21 }) 22 })