summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go')
-rw-r--r--vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go b/vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go
new file mode 100644
index 00000000..5cfbc1cb
--- /dev/null
+++ b/vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go
@@ -0,0 +1,15 @@
+package oci
+
+import (
+ "testing"
+
+ "github.com/hashicorp/packer/packer"
+)
+
+func TestArtifactImpl(t *testing.T) {
+ var raw interface{}
+ raw = &Artifact{}
+ if _, ok := raw.(packer.Artifact); !ok {
+ t.Fatalf("Artifact should be artifact")
+ }
+}