github.com/rsyabuta/packer@v1.1.4-0.20180119234903-5ef0c2280f0b/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  }