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