mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-02-03 22:18:39 +00:00
16 lines
211 B
Go
16 lines
211 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)
|
|
}
|