open-consul/command/kv_command_test.go

18 lines
257 B
Go

package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestKVCommand_implements(t *testing.T) {
t.Parallel()
var _ cli.Command = &KVCommand{}
}
func TestKVCommand_noTabs(t *testing.T) {
t.Parallel()
assertNoTabs(t, new(KVCommand))
}