post-processor/vagrant: tests on input artifact

This commit is contained in:
Mitchell Hashimoto 2014-02-21 20:04:03 -08:00
parent f3494fc77a
commit 42b6f3e1ea
1 changed files with 8 additions and 0 deletions

View File

@ -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")
}
}