mirror of
https://github.com/hashicorp/packer.git
synced 2026-03-15 15:13:19 -04:00
17 lines
273 B
Go
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")
|
|
}
|
|
}
|