mirror of
https://github.com/coredns/coredns.git
synced 2025-10-28 08:44:17 -04:00
tests
This commit is contained in:
@@ -3,11 +3,11 @@ package etcd
|
|||||||
import "testing"
|
import "testing"
|
||||||
|
|
||||||
func TestPath(t *testing.T) {
|
func TestPath(t *testing.T) {
|
||||||
for path := range []string{"mydns", "skydns"} {
|
for _, path := range []string{"mydns", "skydns"} {
|
||||||
e := Etcd{PathPrefix: "mydns"}
|
e := Etcd{PathPrefix: path}
|
||||||
result := e.Path("service.staging.skydns.local.")
|
result := e.Path("service.staging.skydns.local.")
|
||||||
if result != "/"+path+"/"+"/local/skydns/staging/service" {
|
if result != "/"+path+"/local/skydns/staging/service" {
|
||||||
t.Errorf("Failure to get domain's path with prefix: %s", path)
|
t.Errorf("Failure to get domain's path with prefix: %s", result)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user