mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 01:40:26 -05:00
14 lines
255 B
Go
14 lines
255 B
Go
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")
|
|
}
|
|
}
|