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