mirror of
https://github.com/Control-D-Inc/ctrld.git
synced 2026-07-16 13:17:19 +02:00
14 lines
183 B
Go
14 lines
183 B
Go
package resolvconffile
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNameServers(t *testing.T) {
|
|
ns := NameServers("")
|
|
require.NotNil(t, ns)
|
|
t.Log(ns)
|
|
}
|