15 lines
282 B
Go
15 lines
282 B
Go
|
package lxd
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/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")
|
||
|
}
|
||
|
}
|