packer-cn/common/step_provision_test.go

16 lines
266 B
Go
Raw Normal View History

2013-07-16 02:43:01 -04:00
package common
import (
"testing"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/helper/multistep"
2013-07-16 02:43:01 -04:00
)
func TestStepProvision_Impl(t *testing.T) {
var raw interface{}
raw = new(StepProvision)
if _, ok := raw.(multistep.Step); !ok {
t.Fatalf("provision should be a step")
}
}