open-consul/command/kv_command_test.go

18 lines
257 B
Go
Raw Normal View History

2016-09-26 15:10:58 +00:00
package command
import (
"testing"
"github.com/mitchellh/cli"
)
func TestKVCommand_implements(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2016-09-26 15:10:58 +00:00
var _ cli.Command = &KVCommand{}
}
func TestKVCommand_noTabs(t *testing.T) {
2017-05-22 18:18:53 +00:00
t.Parallel()
2016-09-26 15:10:58 +00:00
assertNoTabs(t, new(KVCommand))
}