Commit 72e7b229 authored by joe2far's avatar joe2far

minor engine unit test fix

parent cc24e3f5
...@@ -290,20 +290,24 @@ global: ...@@ -290,20 +290,24 @@ global:
t.Fatalf("failed to render templates: %s", err) t.Fatalf("failed to render templates: %s", err)
} }
if out["top/"+outerpath] != "Gather ye rosebuds while ye may" { fullouterpath := "top/" + outerpath
t.Errorf("Unexpected outer: %q", out[outerpath]) if out[fullouterpath] != "Gather ye rosebuds while ye may" {
t.Errorf("Unexpected outer: %q", out[fullouterpath])
} }
if out["top/charts/herrick/"+innerpath] != "Old time is still a-flyin'" { fullinnerpath := "top/charts/herrick/" + innerpath
t.Errorf("Unexpected inner: %q", out[innerpath]) if out[fullinnerpath] != "Old time is still a-flyin'" {
t.Errorf("Unexpected inner: %q", out[fullinnerpath])
} }
if out["top/charts/herrick/charts/deepest/"+deepestpath] != "And this same flower that smiles to-day" { fulldeepestpath := "top/charts/herrick/charts/deepest/" + deepestpath
t.Errorf("Unexpected deepest: %q", out[deepestpath]) if out[fulldeepestpath] != "And this same flower that smiles to-day" {
t.Errorf("Unexpected deepest: %q", out[fulldeepestpath])
} }
if out["top/charts/herrick/charts/deepest/"+checkrelease] != "Tomorrow will be dyin" { fullcheckrelease := "top/charts/herrick/charts/deepest/" + checkrelease
t.Errorf("Unexpected release: %q", out[checkrelease]) if out[fullcheckrelease] != "Tomorrow will be dyin" {
t.Errorf("Unexpected release: %q", out[fullcheckrelease])
} }
} }
......
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