* move ./*.go files into ./home/ directory
This commit is contained in:
13
home/dns_test.go
Normal file
13
home/dns_test.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package home
|
||||
|
||||
import (
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestResolveRDNS(t *testing.T) {
|
||||
config.DNS.BindHost = "1.1.1.1"
|
||||
initDNSServer(".")
|
||||
if r := resolveRDNS("1.1.1.1"); r != "one.one.one.one" {
|
||||
t.Errorf("resolveRDNS(): %s", r)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user