16 lines
275 B
Go
16 lines
275 B
Go
|
package googlecomputeimport
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/hashicorp/packer/packer"
|
||
|
)
|
||
|
|
||
|
func TestArtifact_ImplementsArtifact(t *testing.T) {
|
||
|
var raw interface{}
|
||
|
raw = &Artifact{}
|
||
|
if _, ok := raw.(packer.Artifact); !ok {
|
||
|
t.Fatalf("Artifact should be a Artifact")
|
||
|
}
|
||
|
}
|