4d994deb3a
Similar to [GH-1082] but for parallels-pvm builder.
12 lines
228 B
Go
12 lines
228 B
Go
package common
|
|
|
|
import "testing"
|
|
|
|
func TestIfconfigIPFinder_Impl(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &IfconfigIPFinder{}
|
|
if _, ok := raw.(HostIPFinder); !ok {
|
|
t.Fatalf("IfconfigIPFinder is not a host IP finder")
|
|
}
|
|
}
|