packer/post-processor/vagrant/aws_test.go
2014-02-21 20:04:03 -08:00

17 lines
273 B
Go

package vagrant
import (
"testing"
)
func TestAWSProvider_impl(t *testing.T) {
var _ Provider = new(AWSProvider)
}
func TestAWSProvider_KeepInputArtifact(t *testing.T) {
p := new(AWSProvider)
if !p.KeepInputArtifact() {
t.Fatal("should keep input artifact")
}
}