X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F14-might_have.t;h=d79a74620fde2758fedfd570dd19f5b728332d6e;hb=5e51f71578bd97f5a9b2237cf5e84b899ad3f7bb;hp=a02f9873ed5626aa019c0a89b963b09129cb389e;hpb=8273e845426f0187b4ad6c4a1b42286fa09a648f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/14-might_have.t b/t/cdbi/14-might_have.t index a02f987..d79a746 100644 --- a/t/cdbi/14-might_have.t +++ b/t/cdbi/14-might_have.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 => 22; -} - use lib 't/cdbi/testlib'; use Film; use Blurb; @@ -78,4 +70,6 @@ Film->create_test_film; ok $host->info->delete; $host->discard_changes; ok !$host->info, 'relationships rechecked after discard_changes'; -} \ No newline at end of file +} + +done_testing;