X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F75limit.t;h=61f552068811d37f326050fb687f81f4293b6ed5;hb=d4a39575216302461a304c8c5211109ffb9d39f0;hp=98d3b64b29eca1219ce778bd9c92701be058acfd;hpb=d6915f449e2d68ac184d6bc616043fd605913757;p=dbsrgits%2FDBIx-Class.git diff --git a/t/75limit.t b/t/75limit.t index 98d3b64..61f5520 100644 --- a/t/75limit.t +++ b/t/75limit.t @@ -1,16 +1,11 @@ use strict; -use warnings; +use warnings; use Test::More; use lib qw(t/lib); use DBICTest; -my $schema = DBICTest::init_schema(); - -BEGIN { - eval "use DBD::SQLite"; - plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 9); -} +my $schema = DBICTest->init_schema(); # test LIMIT my $it = $schema->resultset("CD")->search( {}, @@ -51,11 +46,20 @@ is( $it->next, undef, "software next past end of resultset ok" ); ); is( $cds[0]->title, "Spoonful of bees", "software offset ok" ); + +@cds = $schema->resultset("CD")->search( {}, + { + offset => 2, + order_by => 'year' } +); +is( $cds[0]->title, "Spoonful of bees", "offset with no limit" ); + + # based on a failing criteria submitted by waswas # requires SQL::Abstract >= 1.20 $it = $schema->resultset("CD")->search( { title => [ - -and => + -and => { -like => '%bees' }, @@ -68,3 +72,4 @@ $it = $schema->resultset("CD")->search( ); is( $it->count, 1, "complex abstract count ok" ); +done_testing;