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))
|
|
|
|
}
|