mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
15 lines
248 B
Go
15 lines
248 B
Go
package common
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func testConfigTemplate(t *testing.T) *packer.ConfigTemplate {
|
|
result, err := packer.NewConfigTemplate()
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
return result
|
|
}
|