Commit 6b667cc3 authored by Miek Gieben's avatar Miek Gieben

tests

parent ae841ae3
......@@ -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)
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment