Add shortcode null param variant
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 21 Jul 2016 13:30:12 +0000 (15:30 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 21 Jul 2016 13:30:43 +0000 (15:30 +0200)
See #2294

hugolib/shortcode_test.go

index 55a8a22fec887e7248d16d4154ffdadfbe63f4d8..b30b5b5118563d7252df8c5a16f6735a6647c05a 100644 (file)
@@ -124,6 +124,13 @@ func TestPositionalParamIndexOutOfBounds(t *testing.T) {
        CheckShortCodeMatch(t, "{{< video 47238zzb >}}", "Playing Video error: index out of range for positional param at position 1", tem)
 }
 
+// Issue #2294
+func TestPositionalParamNil(t *testing.T) {
+       tem := tpl.New()
+       tem.AddInternalShortcode("div.html", `<div data='{{ .Get 0 }}'>{{ .Inner }}</div>`)
+       CheckShortCodeMatch(t, "{{% div %}}**foo**{{% /div %}}", "<div data=''><strong>foo</strong></div>", tem)
+}
+
 // some repro issues for panics in Go Fuzz testing
 func TestShortcodeGoFuzzRepros(t *testing.T) {
        tt := tpl.New()