in reply to DBD::Mock -- Giving back wrong data and wrong *amounts* of data
$ cat 790142.pl use strict; use warnings; use Test::More qw(no_plan); use Data::Dumper; use DBI; my $dbh = DBI->connect('DBI:Mock:', '', ''); $dbh->{'mock_add_resultset'} = { sql => 'QUERY_ONE', results => [ [ 'foo', 'bar' ], [ 'this_one', 'this_two' ], [ 'this_three', 'this_four' ], ], }; $dbh->{'mock_add_resultset'} = { sql => 'QUERY_TWO', results => [ [ 'moo', 'baah' ], [ 'that_one', 'that_two' ], [ 'that_three', 'that_four' ], ], }; my $sth = $dbh->prepare('QUERY_ONE'); is_deeply( $sth->fetchrow_arrayref(), [ 'this_one', 'this_two' ] ); is_deeply( $sth->fetchrow_arrayref(), [ 'this_three', 'this_four' ] ); ok( !defined $sth->fetchrow_arrayref() ); # no more data $sth = $dbh->prepare('QUERY_TWO'); is_deeply( $sth->fetchrow_arrayref(), [ 'that_one', 'that_two' ] ); is_deeply( $sth->fetchrow_arrayref(), [ 'that_three', 'that_four' ] ); ok( !defined $sth->fetchrow_arrayref() ); # no more data $sth = $dbh->prepare('QUERY_THREE'); ok( !defined $sth->fetchrow_arrayref() ); # no matching query __END__ $ perl 790142.pl ok 1 ok 2 ok 3 ok 4 ok 5 ok 6 ok 7 1..7 $
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: DBD::Mock -- Giving back wrong data and wrong *amounts* of data
by sirrobert (Acolyte) on Aug 20, 2009 at 21:08 UTC | |
by andreas1234567 (Vicar) on Aug 21, 2009 at 09:22 UTC |