Update missing positional parameter test for .Get
authorcmal <paul@cmal.info>
Tue, 17 Apr 2018 09:29:00 +0000 (11:29 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 17 Apr 2018 13:39:33 +0000 (15:39 +0200)
hugolib/shortcode_test.go

index 51f99830b38618b3a1b47c7c31f99a505c130780..0f503880e21e977c030b23df98a0cc7de0bd3df5 100644 (file)
@@ -144,10 +144,10 @@ func TestPositionalParamSC(t *testing.T) {
 func TestPositionalParamIndexOutOfBounds(t *testing.T) {
        t.Parallel()
        wt := func(tem tpl.TemplateHandler) error {
-               tem.AddTemplate("_internal/shortcodes/video.html", `Playing Video {{ .Get 1 }}`)
+               tem.AddTemplate("_internal/shortcodes/video.html", `Playing Video {{ with .Get 1 }}{{ . }}{{ else }}Missing{{ end }}`)
                return nil
        }
-       CheckShortCodeMatch(t, "{{< video 47238zzb >}}", "Playing Video error: index out of range for positional param at position 1", wt)
+       CheckShortCodeMatch(t, "{{< video 47238zzb >}}", "Playing Video Missing", wt)
 }
 
 // some repro issues for panics in Go Fuzz testing