mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
post-processor/vagrant: tests on input artifact
This commit is contained in:
parent
f3494fc77a
commit
42b6f3e1ea
1 changed files with 8 additions and 0 deletions
|
|
@ -7,3 +7,11 @@ import (
|
|||
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")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue