Add "missing slice" to the Params test
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 21 Jul 2016 19:03:44 +0000 (21:03 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 21 Jul 2016 19:03:44 +0000 (21:03 +0200)
See #2249

hugolib/shortcode_test.go

index cd2d9f7a53b21f82aabaf056d5a3a68d4a30711a..9e12045c3808d675835ce981c0503fa112013449 100644 (file)
@@ -149,9 +149,11 @@ func TestNestedNamedMissingParam(t *testing.T) {
        tem := tpl.New()
        tem.AddInternalShortcode("acc.html", `<div class="acc">{{ .Inner }}</div>`)
        tem.AddInternalShortcode("div.html", `<div {{with .Get "class"}} class="{{ . }}"{{ end }}>{{ .Inner }}</div>`)
+       tem.AddInternalShortcode("div2.html", `<div {{with .Get 0}} class="{{ . }}"{{ end }}>{{ .Inner }}</div>`)
+
        CheckShortCodeMatch(t,
-               `{{% acc %}}{{% div %}}{{% /div %}}{{% /acc %}}`,
-               "<div class=\"acc\"><div ></div>\n</div>", tem)
+               `{{% acc %}}{{% div %}}d1{{% /div %}}{{% div2 %}}d2{{% /div2 %}}{{% /acc %}}`,
+               "<div class=\"acc1\"><div></div>\n</div>", tem)
 }
 
 func TestIsNamedParamsSC(t *testing.T) {