github.com/dacamp/packer@v0.10.2/common/step_provision_test.go (about)

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