mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-28 20:41:21 -05:00
14 lines
248 B
Go
14 lines
248 B
Go
package common
|
|
|
|
import (
|
|
"github.com/mitchellh/multistep"
|
|
"testing"
|
|
)
|
|
|
|
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")
|
|
}
|
|
}
|