2016-05-25 15:34:36 -04:00
|
|
|
package lxc
|
|
|
|
|
|
|
|
import (
|
2016-05-25 15:34:51 -04:00
|
|
|
"testing"
|
2018-01-22 20:21:10 -05:00
|
|
|
|
|
|
|
"github.com/hashicorp/packer/packer"
|
2016-05-25 15:34:36 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommunicator_ImplementsCommunicator(t *testing.T) {
|
2016-05-25 15:34:51 -04:00
|
|
|
var raw interface{}
|
|
|
|
raw = &LxcAttachCommunicator{}
|
|
|
|
if _, ok := raw.(packer.Communicator); !ok {
|
|
|
|
t.Fatalf("Communicator should be a communicator")
|
|
|
|
}
|
2016-05-25 15:34:36 -04:00
|
|
|
}
|