-
Notifications
You must be signed in to change notification settings - Fork 6
/
test.pl
106 lines (104 loc) · 2.62 KB
/
test.pl
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/perl -I./blib/lib -I./blib/arch
use Test::Harness;
runtests(
't/core/context.t',
't/core/errors.t',
't/core/expression.t',
't/core/loader.t',
't/core/template.t',
't/core/utils.t',
't/expression/logic.t',
't/expression/in.t',
't/expression/eq.t',
't/expression/defined.t',
't/filter/add.t',
't/filter/addslashes.t',
't/filter/capfirst.t',
't/filter/center.t',
't/filter/cut.t',
't/filter/default.t',
't/filter/default_if_none.t',
't/filter/dictsort.t',
't/filter/dictsortreversed.t',
't/filter/divisibleby.t',
't/filter/escape.t',
't/filter/escapejs.t',
't/filter/filesizeformat.t',
't/filter/first.t',
't/filter/floatformat.t',
't/filter/get_digit.t',
't/filter/iriencode.t',
't/filter/join.t',
't/filter/last.t',
't/filter/length.t',
't/filter/length_is.t',
't/filter/linebreaks.t',
't/filter/linebreaksbr.t',
't/filter/linenumbers.t',
't/filter/ljust.t',
't/filter/lower.t',
't/filter/make_list.t',
't/filter/numberformat.t',
't/filter/phone2numeric.t',
't/filter/pluralize.t',
't/filter/pluralize_ru.t',
't/filter/random.t',
't/filter/removetags.t',
't/filter/reverse.t',
't/filter/rjust.t',
't/filter/safe.t',
't/filter/safeseq.t',
't/filter/slice.t',
't/filter/slugify.t',
't/filter/split.t',
't/filter/strftime.t',
't/filter/stringformat.t',
't/filter/striptags.t',
't/filter/time.t',
't/filter/timesince.t',
't/filter/timeuntil.t',
't/filter/title.t',
't/filter/truncatechars.t',
't/filter/truncatechars_html.t',
't/filter/truncatewords.t',
't/filter/truncatewords_html.t',
't/filter/unordered_list.t',
't/filter/upper.t',
't/filter/urlencode.t',
't/filter/urlize.t',
't/filter/urlizetrunc.t',
't/filter/wordcount.t',
't/filter/wordwrap.t',
't/filter/yesno.t',
't/tag/autoescape.t',
't/tag/comment.t',
't/tag/cycle.t',
't/tag/debug.t',
't/tag/dump.t',
't/tag/dump_html.t',
't/tag/dump_warn.t',
't/tag/filter.t',
't/tag/firstof.t',
't/tag/firstofdefined.t',
't/tag/for.t',
't/tag/if.t',
't/tag/ifchanged.t',
't/tag/ifequal.t',
't/tag/ifnotequal.t',
't/tag/include.t',
't/tag/load.t',
't/tag/now.t',
't/tag/regroup.t',
't/tag/spaceless.t',
't/tag/sprintf.t',
't/tag/ssi.t',
't/tag/templatetag.t',
't/tag/url.t',
't/tag/verbatim.t',
't/tag/widthratio.t',
't/tag/with.t',
't/xs/count_lines.t',
't/xs/spaceless.t',
't/xs/eval_sequence.t',
't/xs/html_protect.t',
);