packer-cn/builder/lxc/communicator_test.go

16 lines
316 B
Go
Raw Permalink Normal View History

2016-05-25 19:34:36 +00:00
package lxc
import (
2016-05-25 19:34:51 +00:00
"testing"
2018-01-22 17:21:10 -08:00
2020-12-17 13:29:25 -08:00
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
2016-05-25 19:34:36 +00:00
)
func TestCommunicator_ImplementsCommunicator(t *testing.T) {
2016-05-25 19:34:51 +00:00
var raw interface{}
raw = &LxcAttachCommunicator{}
if _, ok := raw.(packersdk.Communicator); !ok {
2016-05-25 19:34:51 +00:00
t.Fatalf("Communicator should be a communicator")
}
2016-05-25 19:34:36 +00:00
}