mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 10:59:43 -05:00
15 lines
263 B
Go
15 lines
263 B
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/helper/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")
|
|
}
|
|
}
|