summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it_dbi.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t
index faf243d..4404247 100755
--- a/tests/it_dbi.t
+++ b/tests/it_dbi.t
@@ -54,6 +54,11 @@ is(
"select with IN"
);
is(
+ $record->select(array('ID NI' => array(2,3))),
+ 2,
+ "select with NI"
+);
+is(
$record->select(array('ID NOT IN' => array(2,3))),
1,
"select with NOT IN"
@@ -131,7 +136,7 @@ $record->update(array('-x' => 'RAND() * 10'));
isnt(
array($record->_key, $record->x, $record->foo),
array(3, 17, "q'uux"),
- "update"
+ "update with function"
);
$rand = $record->x;