Files
Packer-Cn/post-processor/googlecompute-import/artifact_test.go
T

16 lines
275 B
Go
Raw Normal View History

2018-03-29 22:50:58 -05:00
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")
}
}