github.com/jbronn/packer@v0.1.6-0.20140120165540-8a1364dbd817/builder/virtualbox/common/config_test.go (about)

     1  package common
     2  
     3  import (
     4  	"github.com/mitchellh/packer/packer"
     5  	"testing"
     6  )
     7  
     8  func testConfigTemplate(t *testing.T) *packer.ConfigTemplate {
     9  	result, err := packer.NewConfigTemplate()
    10  	if err != nil {
    11  		t.Fatalf("err: %s", err)
    12  	}
    13  
    14  	return result
    15  }