2013-07-15 11:41:48 +09:00
|
|
|
package common
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
|
"testing"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestStepConnectSSH_Impl(t *testing.T) {
|
|
|
|
|
var raw interface{}
|
|
|
|
|
raw = new(StepConnectSSH)
|
|
|
|
|
if _, ok := raw.(multistep.Step); !ok {
|
|
|
|
|
t.Fatalf("connect ssh should be a step")
|
|
|
|
|
}
|
|
|
|
|
}
|