Files
ctrld/internal/resolvconffile/dns_test.go
Cuong Manh Le 62f73bcaa2 all: preserve search domains settings
So bare hostname will be resolved as expected when ctrld is running.
2025-05-15 17:00:59 +07:00

16 lines
209 B
Go

//go:build !js && !windows
package resolvconffile
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestNameServers(t *testing.T) {
ns := NameServers()
require.NotNil(t, ns)
t.Log(ns)
}