packer-cn/common/step_download_test.go
2018-01-22 17:21:10 -08:00

16 lines
249 B
Go

package common
import (
"testing"
"github.com/mitchellh/multistep"
)
func TestStepDownload_Impl(t *testing.T) {
var raw interface{}
raw = new(StepDownload)
if _, ok := raw.(multistep.Step); !ok {
t.Fatalf("download should be a step")
}
}