Imported Upstream version 2.5.11
[libapache-mod-security.git] / apache2 / t / op / beginsWith.t
1 ### Empty
2 {
3         type => "op",
4         name => "beginsWith",
5         param => "",
6         input => "",
7         ret => 1,
8 },
9 {
10         type => "op",
11         name => "beginsWith",
12         param => "TestCase",
13         input => "",
14         ret => 0,
15 },
16 {
17         type => "op",
18         name => "beginsWith",
19         param => "",
20         input => "TestCase",
21         ret => 1,
22 },
23
24 ### General
25 {
26         type => "op",
27         name => "beginsWith",
28         param => "abcdef",
29         input => "abcdef",
30         ret => 1,
31 },
32 {
33         type => "op",
34         name => "beginsWith",
35         param => "abcdef",
36         input => "abcdefghi",
37         ret => 1,
38 },
39 {
40         type => "op",
41         name => "beginsWith",
42         param => "abcdef",
43         input => "abc",
44         ret => 0,
45 },