summaryrefslogtreecommitdiff
path: root/extensions/ParserFunctions/stringFunctionTests.txt
blob: 064decef853ce07c90ba7778ef2b1ada099b87aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# @todo expand
!! functionhooks
len
!! endfunctionhooks

!! test
#len
!! input
{{#len:}}
{{#len:0}}
{{#len:test}}
!!result
<p>0
1
4
</p>
!! end

!! test
#urldecode
!! input
{{#urldecode:}}
{{#urldecode:foo%20bar}}
{{#urldecode:%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D0%92%D0%B8%D0%BA%D0%B8}}
{{#urldecode: some unescaped string}}
!! result
<p>foo bar
МедиаВики
some unescaped string
</p>
!! end