mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 18:04:11 -05:00
14 lines
308 B
Go
14 lines
308 B
Go
package vagrant
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"testing"
|
|
)
|
|
|
|
func TestAWSBoxPostProcessor_ImplementsPostProcessor(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &AWSBoxPostProcessor{}
|
|
if _, ok := raw.(packer.PostProcessor); !ok {
|
|
t.Fatalf("AWS PostProcessor should be a PostProcessor")
|
|
}
|
|
}
|