mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-24 02:10:31 -05:00
10 lines
170 B
Go
10 lines
170 B
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestRemoteDriverMock_impl(t *testing.T) {
|
|
var _ Driver = new(RemoteDriverMock)
|
|
var _ RemoteDriver = new(RemoteDriverMock)
|
|
}
|