summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2009-02-17 13:51:20 +0000
committerChristian Schneider2009-02-17 13:51:20 +0000
commitbe11fa008570326ca0ba76152cda1720934c3070 (patch)
tree905a28fa50c43ebbf515aa068fcd30577d3b0d49
parent3e691e8e56417de13e2b958386af2059ba80ebbd (diff)
downloaditools-be11fa008570326ca0ba76152cda1720934c3070.tar.gz
itools-be11fa008570326ca0ba76152cda1720934c3070.tar.bz2
itools-be11fa008570326ca0ba76152cda1720934c3070.zip
Convert all tests back to old syntax
-rwxr-xr-xtests/it_dbi.t8
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));