2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-17 08:07:35 +00:00

16 lines
229 B
Go
Raw Normal View History

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