Files
coredns/middleware/etcd/path_test.go

14 lines
331 B
Go
Raw Normal View History

2016-03-21 07:20:22 +00:00
package etcd
import "testing"
func TestPath(t *testing.T) {
2016-03-22 11:13:12 +00:00
for _, path := range []string{"mydns", "skydns"} {
e := Etcd{PathPrefix: path}
2016-03-21 07:20:22 +00:00
result := e.Path("service.staging.skydns.local.")
2016-03-22 11:13:12 +00:00
if result != "/"+path+"/local/skydns/staging/service" {
t.Errorf("Failure to get domain's path with prefix: %s", result)
2016-03-21 07:20:22 +00:00
}
}
}