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