X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi-t%2F08-inheritcols.t;h=3e71a9efc67d36d68360a6707c9da25e604e668b;hb=126042ee4b9394c4eecc6ece49469da6fce23ba3;hp=c23de9c36b3a92e550f507b29cb2be1591b8e802;hpb=b6e40530b8ef2ef333b7466a6cd131c460872d03;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi-t/08-inheritcols.t b/t/cdbi-t/08-inheritcols.t index c23de9c..3e71a9e 100644 --- a/t/cdbi-t/08-inheritcols.t +++ b/t/cdbi-t/08-inheritcols.t @@ -7,6 +7,7 @@ use DBIx::Class; package A; @A::ISA = qw(DBIx::Class); +__PACKAGE__->load_components(qw/CDBICompat Core/); __PACKAGE__->columns(Primary => 'id'); package A::B;