Files
gluetun/internal/netlink/ipv6_test.go
Quentin McGaw 801c9a3086 wip
2024-11-08 16:52:47 +00:00

14 lines
220 B
Go

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)
}