Path stuff copied over and tests added

This commit is contained in:
Miek Gieben
2016-03-21 07:20:22 +00:00
parent b6341e8b63
commit ecc5f28671
4 changed files with 73 additions and 54 deletions

View File

@@ -0,0 +1,13 @@
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)
}
}
}