mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-26 03:12:01 -05:00
11 lines
228 B
Go
11 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")
|
|
}
|
|
}
|