packer-cn/builder/profitbricks/artifact_test.go

25 lines
473 B
Go
Raw Normal View History

2016-06-28 22:35:41 -04:00
package profitbricks
import (
"testing"
2017-04-04 16:39:01 -04:00
"github.com/hashicorp/packer/packer"
2016-06-28 22:35:41 -04:00
)
func TestArtifact_Impl(t *testing.T) {
var raw interface{}
raw = &Artifact{}
if _, ok := raw.(packer.Artifact); !ok {
t.Fatalf("Artifact should be artifact")
}
}
func TestArtifactString(t *testing.T) {
a := &Artifact{"packer-foobar"}
expected := "A snapshot was created: 'packer-foobar'"
if a.String() != expected {
t.Fatalf("artifact string should match: %v", expected)
}
}