Files
gluetun/internal/netlink/ipv6_test.go

14 lines
220 B
Go
Raw Normal View History

2024-11-08 16:52:06 +00:00
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)
}