X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F30-pager.t;h=cb1cee94a688e07529674ab741daa9750441698c;hb=d9bd5195;hp=d26b4e829ab162bf3305cc3a668485850449dc7e;hpb=aea59b74d807ee65b319f3c1f84709157e12926b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/30-pager.t b/t/cdbi/30-pager.t index d26b4e8..cb1cee9 100644 --- a/t/cdbi/30-pager.t +++ b/t/cdbi/30-pager.t @@ -1,14 +1,6 @@ use strict; use Test::More; -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - if ($@) { - plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required'); - } - plan tests => 6; -} - use lib 't/cdbi/testlib'; use Film; @@ -48,3 +40,5 @@ is( $it->next, undef, "next past end of page ok" ); is( $pager->entries_on_this_page, 2, "entries on second page ok" ); is( $it->next->title, "Film 4", "second page first title ok" ); + +done_testing;