15 lines
308 B
Go
Raw Normal View History

2013-06-26 17:37:46 -07:00
package vagrant
import (
"github.com/mitchellh/packer/packer"
"testing"
)
func TestAWSBoxPostProcessor_ImplementsPostProcessor(t *testing.T) {
2013-06-26 17:37:46 -07:00
var raw interface{}
raw = &AWSBoxPostProcessor{}
if _, ok := raw.(packer.PostProcessor); !ok {
t.Fatalf("AWS PostProcessor should be a PostProcessor")
}
}