diff options
Diffstat (limited to 'tests/it_dbi.t')
-rwxr-xr-x | tests/it_dbi.t | 7 |
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; |