This commit is contained in:
Quentin McGaw
2024-11-08 16:52:06 +00:00
parent 92011205be
commit 801c9a3086
4 changed files with 52 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
package netlink
import (
"testing"
"github.com/qdm12/log"
)
func Test_IsIPv6Supported(t *testing.T) {
n := New(log.New(log.SetLevel(log.LevelDebug)))
supported, err := n.IsIPv6Supported()
t.Log(supported, err)
}