11 lines
164 B
Go
11 lines
164 B
Go
|
package googlecompute
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/packer"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestArtifact_impl(t *testing.T) {
|
||
|
var _ packer.Artifact = new(Artifact)
|
||
|
}
|