Files
Packer-Cn/post-processor/vagrant/artifact_test.go
T

23 lines
418 B
Go
Raw Normal View History

2013-06-26 18:55:11 -07:00
package vagrant
import (
"testing"
2018-01-22 17:21:10 -08:00
"github.com/hashicorp/packer/packer"
2013-06-26 18:55:11 -07:00
)
func TestArtifact_ImplementsArtifact(t *testing.T) {
var raw interface{}
raw = &Artifact{}
if _, ok := raw.(packer.Artifact); !ok {
t.Fatalf("Artifact should be a Artifact")
}
}
func TestArtifact_Id(t *testing.T) {
artifact := NewArtifact("vmware", "./")
if artifact.Id() != "vmware" {
t.Fatalf("should return name as Id")
}
}