2014-05-13 17:39:00 -04:00
|
|
|
package common
|
2014-04-06 13:21:22 -04:00
|
|
|
|
|
|
|
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")
|
|
|
|
}
|
|
|
|
}
|