github.com/sneal/packer@v0.5.2/post-processor/vagrant/aws_test.go (about) 1 package vagrant 2 3 import ( 4 "testing" 5 ) 6 7 func TestAWSProvider_impl(t *testing.T) { 8 var _ Provider = new(AWSProvider) 9 } 10 11 func TestAWSProvider_KeepInputArtifact(t *testing.T) { 12 p := new(AWSProvider) 13 14 if !p.KeepInputArtifact() { 15 t.Fatal("should keep input artifact") 16 } 17 }