2017-02-24 23:54:49 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestOperator_Autopilot_Implements(t *testing.T) {
|
2017-05-22 18:18:53 +00:00
|
|
|
t.Parallel()
|
2017-02-24 23:54:49 +00:00
|
|
|
var _ cli.Command = &OperatorAutopilotCommand{}
|
|
|
|
}
|