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

40
apache2/t/tfn/lowercase.t Normal file
View File

@@ -0,0 +1,40 @@
### Empty
{
type => "tfn",
name => "lowercase",
input => "",
output => "",
ret => 0,
},
### Nothing
{
type => "tfn",
name => "lowercase",
input => "testcase",
output => "testcase",
ret => 0,
},
{
type => "tfn",
name => "lowercase",
input => "test\0case",
output => "test\0case",
ret => 0,
},
### Basic
{
type => "tfn",
name => "lowercase",
input => "TestCase",
output => "testcase",
ret => 1,
},
{
type => "tfn",
name => "lowercase",
input => "Test\0Case",
output => "test\0case",
ret => 1,
},