diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it_dbi.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t index ecd40e3..762e81f 100755 --- a/tests/it_dbi.t +++ b/tests/it_dbi.t @@ -73,6 +73,11 @@ is( 3, "select with empty NOT IN" ); +is( + $record->select(array('ID' => array(2,3))), + 2, + "select with implicit IN" +); it_dbi::createclass(array('table' => "it_dbi_test", 'forcecreate' => true)); |