Author: REHSACK
Date: Mon May 24 03:03:49 2010
New Revision: 14021
Modified:
dbi/trunk/t/50dbm_simple.t
Log:
Add evaluating amount of rows as TODO
Modified: dbi/trunk/t/50dbm_simple.t
==============================================================================
--- dbi/trunk/t/50dbm_simple.t (original)
+++ dbi/trunk/t/50dbm_simple.t Mon May 24 03:03:49 2010
@@ -239,7 +239,10 @@
# different DBMs (or versions) will return different orders.
my $allrows = $sth->fetchall_arrayref();
my $expected_rows = $results[$idx];
- is( $DBI::rows, scalar( @{$expected_rows} ), $sql );
+ TODO: {
+ local $TODO = "Proxying DBD's might not return amount of fetched
rows";
+ is( $DBI::rows, scalar( @{$expected_rows} ), $sql );
+ }
is_deeply( $allrows, $expected_rows, 'SELECT results' );
}
$dbh->disconnect;