[svn:dbd-oracle] r15282 - dbd-oracle/trunk/t
[email protected] Sun, 22 Apr 2012 02:04:41 -0700 (PDT)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: mjevans Date: Sun Apr 22 02:04:37 2012 New Revision: 15282 Modified: dbd-oracle/trunk/t/51scroll.t Log: just test string changes Modified: dbd-oracle/trunk/t/51scroll.t ============================================================================== --- dbd-oracle/trunk/t/51scroll.t (original) +++ dbd-oracle/trunk/t/51scroll.t Sun Apr 22 02:04:37 2012 @@ -118,15 +118,15 @@ # it should give us the 4th rcord and not the 5th $value = $sth->ora_fetch_scroll(OCI_FETCH_RELATIVE,2); -is($value->[0], 3, '... we should get the 3rd record'); +is($value->[0], 3, '... we should get the 3rd record rt76695'); ($value) = $sth->fetchrow; -is($value, 4, '... we should get the 4th record'); +is($value, 4, '... we should get the 4th record rt 76695'); # rt 76410 - fetch after fetch absolute always returns the same row $value = $sth->ora_fetch_scroll(OCI_FETCH_ABSOLUTE, 2); -is($value->[0], 2, "... we should get the 2nd row"); +is($value->[0], 2, "... we should get the 2nd row rt76410_2"); ($value) = $sth->fetchrow; -is($value, 3, "... we should get the 3rd row"); +is($value, 3, "... we should get the 3rd row rt76410_2"); $sth->finish(); drop_table($dbh);