github.com/ddnomad/packer@v1.3.2/common/step_provision_test.go (about)

     1  package common
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/hashicorp/packer/helper/multistep"
     7  )
     8  
     9  func TestStepProvision_Impl(t *testing.T) {
    10  	var raw interface{}
    11  	raw = new(StepProvision)
    12  	if _, ok := raw.(multistep.Step); !ok {
    13  		t.Fatalf("provision should be a step")
    14  	}
    15  }