16 lines
229 B
Go
16 lines
229 B
Go
|
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))
|
||
|
}
|