12 lines
186 B
Go
12 lines
186 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/mitchellh/packer/template/interpolate"
|
||
|
)
|
||
|
|
||
|
func testConfigTemplate(t *testing.T) *interpolate.Context {
|
||
|
return &interpolate.Context{}
|
||
|
}
|