|
|
|
|
@ -1,8 +1,9 @@
|
|
|
|
|
package digitalocean
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestArtifact_Impl(t *testing.T) {
|
|
|
|
|
@ -13,6 +14,15 @@ func TestArtifact_Impl(t *testing.T) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestArtifactId(t *testing.T) {
|
|
|
|
|
a := &Artifact{"packer-foobar", 42, "San Francisco", nil}
|
|
|
|
|
expected := "42"
|
|
|
|
|
|
|
|
|
|
if a.Id() != expected {
|
|
|
|
|
t.Fatalf("artifact ID should match: %v", expected)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestArtifactString(t *testing.T) {
|
|
|
|
|
a := &Artifact{"packer-foobar", 42, "San Francisco", nil}
|
|
|
|
|
expected := "A snapshot was created: 'packer-foobar' in region 'San Francisco'"
|
|
|
|
|
|