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

50
apache2/t/tfn/hexDecode.t Normal file
View File

@@ -0,0 +1,50 @@
### Empty
{
type => "tfn",
name => "hexDecode",
input => "",
output => "",
ret => 1,
},
### Basic
{
type => "tfn",
name => "hexDecode",
input => "5465737443617365",
output => "TestCase",
ret => 1,
},
### Basic w/NULL
{
type => "tfn",
name => "hexDecode",
input => "546573740043617365",
output => "Test\0Case",
ret => 1,
},
### Invalid
# What should happen here? Probably just fail and leave alone.
{
type => "tfn",
name => "hexDecode",
input => "01234567890a0z01234567890a",
output => "01234567890a0z01234567890a",
ret => 0,
},
{
type => "tfn",
name => "hexDecode",
input => "01234567890az",
output => "01234567890az",
ret => 0,
},
{
type => "tfn",
name => "hexDecode",
input => "01234567890a0",
output => "01234567890a0",
ret => 0,
},