X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F12-filter.t;h=109c876c93038540f3a72a0f5d7a1651da96543b;hb=c3e9f7189094e94137356251c4f0b1f1cbfeb04a;hp=bdc96878659d76b402c426c6876f12277b1c26fa;hpb=6a3bf2519832866d037740c5fb22341dad6f8bb3;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/12-filter.t b/t/cdbi/12-filter.t index bdc9687..109c876 100644 --- a/t/cdbi/12-filter.t +++ b/t/cdbi/12-filter.t @@ -7,8 +7,7 @@ BEGIN { plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required'); next; } - eval "use DBD::SQLite"; - plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 50); + plan tests => 50; } use lib 't/cdbi/testlib'; @@ -129,10 +128,6 @@ test_normal_iterator; # make sure nothing gets clobbered; test_normal_iterator; -SKIP: { - #skip "dbic iterators don't support slice yet", 12; - - { my @acts = $film->actors->slice(1, 2); is @acts, 2, "Slice gives 2 actor"; @@ -177,5 +172,3 @@ delete $film->{related_resultsets}; eval { $film->actors->delete_all }; is $@, '', "Deleting again does no harm"; } - -} # end SKIP block