mirror of
https://github.com/coredns/coredns.git
synced 2025-10-31 18:23:13 -04:00
14 lines
333 B
Go
14 lines
333 B
Go
|
|
package etcd
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestPath(t *testing.T) {
|
||
|
|
for path := range []string{"mydns", "skydns"} {
|
||
|
|
e := Etcd{PathPrefix: "mydns"}
|
||
|
|
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)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|