summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/builder/oracle/oci/artifact_test.go
blob: 5cfbc1cb833f4a10cc360c7d9433cba983523101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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")
	}
}