tpl: Add the other test case for hasPrefix
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 2 Apr 2016 23:59:47 +0000 (01:59 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 2 Apr 2016 23:59:47 +0000 (01:59 +0200)
tpl/template_funcs_test.go

index 4d9959cab8d089d0443df8194f5c8d0ae8d3d813..c16dfb8047fedfb8c65bbe678d33386d35b659c7 100644 (file)
@@ -89,7 +89,8 @@ delimit: {{ delimit (slice "A" "B" "C") ", " " and " }}
 div: {{div 6 3}}
 emojify: {{ "I :heart: Hugo" | emojify }}
 eq: {{ if eq .Section "blog" }}current{{ end }}
-hasPrefix: {{ hasPrefix "Hugo" "Hu" }}
+hasPrefix 1: {{ hasPrefix "Hugo" "Hu" }}
+hasPrefix 2: {{ hasPrefix "Hugo" "Fu" }}
 in: {{ if in "this string contains a substring" "substring" }}Substring found!{{ end }}
 jsonify: {{ (slice "A" "B" "C") | jsonify }}
 lower: {{lower "BatMan"}}
@@ -137,7 +138,8 @@ delimit: A, B and C
 div: 2
 emojify: I ❤️  Hugo
 eq: current
-hasPrefix: true
+hasPrefix 1: true
+hasPrefix 2: false
 in: Substring found!
 jsonify: ["A","B","C"]
 lower: batman