harness-drone/vendor/github.com/mitchellh/cli/ui_writer_test.go

25 lines
354 B
Go
Raw Normal View History

2015-09-30 01:21:17 +00:00
package cli
import (
"io"
"testing"
)
func TestUiWriter_impl(t *testing.T) {
var _ io.Writer = new(UiWriter)
}
func TestUiWriter(t *testing.T) {
ui := new(MockUi)
w := &UiWriter{
Ui: ui,
}
w.Write([]byte("foo\n"))
w.Write([]byte("bar\n"))
if ui.OutputWriter.String() != "foo\nbar\n" {
t.Fatalf("bad: %s", ui.OutputWriter.String())
}
}