github.com/jerryclinesmith/packer@v0.3.7/common/step_connect_ssh_test.go (about) 1 package common 2 3 import ( 4 "github.com/mitchellh/multistep" 5 "testing" 6 ) 7 8 func TestStepConnectSSH_Impl(t *testing.T) { 9 var raw interface{} 10 raw = new(StepConnectSSH) 11 if _, ok := raw.(multistep.Step); !ok { 12 t.Fatalf("connect ssh should be a step") 13 } 14 }