Imported Upstream version 2.5.11
[libapache-mod-security.git] / apache2 / t / tfn / lowercase.t
1 ### Empty
2 {
3         type => "tfn",
4         name => "lowercase",
5         input => "",
6         output => "",
7         ret => 0,
8 },
9
10 ### Nothing
11 {
12         type => "tfn",
13         name => "lowercase",
14         input => "testcase",
15         output => "testcase",
16         ret => 0,
17 },
18 {
19         type => "tfn",
20         name => "lowercase",
21         input => "test\0case",
22         output => "test\0case",
23         ret => 0,
24 },
25
26 ### Basic
27 {
28         type => "tfn",
29         name => "lowercase",
30         input => "TestCase",
31         output => "testcase",
32         ret => 1,
33 },
34 {
35         type => "tfn",
36         name => "lowercase",
37         input => "Test\0Case",
38         output => "test\0case",
39         ret => 1,
40 },