More test updates.

This commit is contained in:
brectanus
2007-12-21 16:20:51 +00:00
parent 2068357af8
commit 402f6318bb
8 changed files with 336 additions and 10 deletions

View File

@@ -1 +1,52 @@
### Empty
{
type => "op",
name => "within",
param => "",
input => "",
ret => 0,
},
{
type => "op",
name => "within",
param => "TestCase",
input => "",
ret => 0,
},
{
type => "op",
name => "within",
param => "",
input => "TestCase",
ret => 0,
},
### General
{
type => "op",
name => "within",
param => "abcdefghi",
input => "abc",
ret => 1,
},
{
type => "op",
name => "within",
param => "abcdefghi",
input => "def",
ret => 1,
},
{
type => "op",
name => "within",
param => "abcdefghi",
input => "ghi",
ret => 1,
},
{
type => "op",
name => "within",
param => "abcdefghi",
input => "ghij",
ret => 0,
},