Some more reorg of tests.

This commit is contained in:
brectanus
2007-12-19 23:43:51 +00:00
parent a04e03b2c7
commit 3a8e0a4dfd
51 changed files with 14 additions and 3 deletions

View File

@@ -0,0 +1 @@

1
apache2/t/op/contains.t Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

1
apache2/t/op/endsWith.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/eq.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/ge.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/geoLookup.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/gt.t Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

1
apache2/t/op/le.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/lt.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/m.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/noMatch.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/pm.t Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

1
apache2/t/op/rbl.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/rx.t Normal file
View File

@@ -0,0 +1 @@

1
apache2/t/op/streq.t Normal file
View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@

35
apache2/t/op/verifyCC.t Normal file
View File

@@ -0,0 +1,35 @@
### Empty
{
type => "op",
name => "verifyCC",
param => "\\d{15,16}",
input => "",
rc => 0,
},
### Non-matching
{
type => "op",
name => "verifyCC",
param => "\\d{15,16}",
input => "TestCase",
rc => 0,
},
### Bad CC#
{
type => "op",
name => "verifyCC",
param => "\\d{15,16}",
input => "01234567890123456",
rc => 0,
},
### Good CC#
{
type => "op",
name => "verifyCC",
param => "\\d{15,16}",
input => "372802490654059",
rc => 0,
},

1
apache2/t/op/within.t Normal file
View File

@@ -0,0 +1 @@