diff options
author | Christian Schneider | 2009-02-17 13:51:20 +0000 |
---|---|---|
committer | Christian Schneider | 2009-02-17 13:51:20 +0000 |
commit | be11fa008570326ca0ba76152cda1720934c3070 (patch) | |
tree | 905a28fa50c43ebbf515aa068fcd30577d3b0d49 | |
parent | 3e691e8e56417de13e2b958386af2059ba80ebbd (diff) | |
download | itools-be11fa008570326ca0ba76152cda1720934c3070.tar.gz itools-be11fa008570326ca0ba76152cda1720934c3070.tar.bz2 itools-be11fa008570326ca0ba76152cda1720934c3070.zip |
Convert all tests back to old syntax
-rwxr-xr-x | tests/it_dbi.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t index 934e965..350c6e2 100755 --- a/tests/it_dbi.t +++ b/tests/it_dbi.t @@ -53,22 +53,22 @@ is( is( $record->select(array('ID IN' => array(2,3))), 2, - "select with IN", + "select with IN" ); is( $record->select(array('ID NOT IN' => array(2,3))), 1, - "select with NOT IN", + "select with NOT IN" ); is( $record->select(array('ID IN' => array())), 0, - "select with empty IN", + "select with empty IN" ); is( $record->select(array('ID NOT IN' => array())), 3, - "select with empty NOT IN", + "select with empty NOT IN" ); it_dbi::createclass(array('table' => "it_dbi_test", 'forcecreate' => true)); |