11 lines
169 B
Go
11 lines
169 B
Go
|
package docker
|
||
|
|
||
|
import (
|
||
|
"github.com/mitchellh/packer/packer"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestCommunicator_impl(t *testing.T) {
|
||
|
var _ packer.Communicator = new(Communicator)
|
||
|
}
|