open-consul/command/operator_raft_test.go

24 lines
439 B
Go
Raw Normal View History

package command
import (
"testing"
"github.com/hashicorp/consul/command/base"
"github.com/mitchellh/cli"
)
func testOperatorRaftCommand(t *testing.T) (*cli.MockUi, *OperatorRaftCommand) {
ui := cli.NewMockUi()
return ui, &OperatorRaftCommand{
Command: base.Command{
2017-04-21 00:02:42 +00:00
UI: ui,
Flags: base.FlagSetHTTP,
},
}
}
func TestOperator_Raft_Implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
var _ cli.Command = &OperatorRaftCommand{}
}