mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 13:55:55 +00:00
18 lines
281 B
Go
18 lines
281 B
Go
package command
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
func TestSnapshotCommand_implements(t *testing.T) {
|
|
t.Parallel()
|
|
var _ cli.Command = &SnapshotCommand{}
|
|
}
|
|
|
|
func TestSnapshotCommand_noTabs(t *testing.T) {
|
|
t.Parallel()
|
|
assertNoTabs(t, new(SnapshotCommand))
|
|
}
|