X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F09-has_many.t;h=7b2a336c1613e12fca7ade84120efe14da7836c8;hb=d9bd5195;hp=b9048dc95ec7881105ab22b1042d4af22015f57c;hpb=aea59b74d807ee65b319f3c1f84709157e12926b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/09-has_many.t b/t/cdbi/09-has_many.t index b9048dc..7b2a336 100644 --- a/t/cdbi/09-has_many.t +++ b/t/cdbi/09-has_many.t @@ -1,14 +1,6 @@ use strict; use Test::More; - -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - plan skip_all => 'Class::Trigger and DBIx::ContextualFetch required' if $@; - plan tests => 31; -} - - use lib 't/cdbi/testlib'; use Film; use Actor; @@ -124,3 +116,5 @@ is($as->Name, 'Arnold Schwarzenegger', "Arnie's still Arnie"); is_deeply [sort map { $_->id } $other_thing->things], [1,2]; } + +done_testing;