X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2Fcopy.t;h=bde83ecc0670a075f3bb7d889471fab2da702371;hb=d9bd51956470404b3960871d3413fa98f16961d2;hp=2550619e2a756c517d484c583acd9ead996015b1;hpb=aea59b74d807ee65b319f3c1f84709157e12926b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/copy.t b/t/cdbi/copy.t index 2550619..bde83ec 100644 --- a/t/cdbi/copy.t +++ b/t/cdbi/copy.t @@ -1,12 +1,6 @@ use strict; use Test::More; -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - plan $@ ? (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@") - : (tests=> 4); -} - INIT { use lib 't/cdbi/testlib'; } @@ -39,3 +33,4 @@ isnt $new_film->id, $film->id, "copy() gets new primary key"; $new_film = $film->copy(42); is $new_film->id, 42, "copy() with new id"; +done_testing;