blob: a9ec59713d3c61511acc254082e15909ebb42012 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package msg
import "testing"
func TestPath(t *testing.T) {
for _, path := range []string{"mydns", "skydns"} {
result := Path("service.staging.skydns.local.", path)
if result != "/"+path+"/local/skydns/staging/service" {
t.Errorf("Failure to get domain's path with prefix: %s", result)
}
}
}
|