From 42b6f3e1ead2d29c65b79ec4e9d3977a212e0d87 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 21 Feb 2014 20:04:03 -0800 Subject: [PATCH] post-processor/vagrant: tests on input artifact --- post-processor/vagrant/aws_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/post-processor/vagrant/aws_test.go b/post-processor/vagrant/aws_test.go index f685e030e..b1d44b7e0 100644 --- a/post-processor/vagrant/aws_test.go +++ b/post-processor/vagrant/aws_test.go @@ -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") + } +}