packer-cn/builder/amazon/chroot/communicator_test.go
2017-04-04 13:39:01 -07:00

15 lines
285 B
Go

package chroot
import (
"github.com/hashicorp/packer/packer"
"testing"
)
func TestCommunicator_ImplementsCommunicator(t *testing.T) {
var raw interface{}
raw = &Communicator{}
if _, ok := raw.(packer.Communicator); !ok {
t.Fatalf("Communicator should be a communicator")
}
}