X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F05components.t;h=63138635a4e99f7f3b2595a551acb256a2f0ae1b;hb=d52c4a75538bd15d1fa531a63c6ec45b8943dfd0;hp=4b063bfd47417d24eee14d515e3a8d0b1abb7565;hpb=eb47985e6ccf89ec6433257852505c1a8e160303;p=dbsrgits%2FDBIx-Class.git diff --git a/t/05components.t b/t/05components.t index 4b063bf..6313863 100644 --- a/t/05components.t +++ b/t/05components.t @@ -1,14 +1,11 @@ -#!/usr/bin/perl - use strict; use warnings; use Test::More; use lib qw(t/lib); +use DBICTest; use DBICTest::ForeignComponent; -plan tests => 2; - # Tests if foreign component was loaded by calling foreign's method ok( DBICTest::ForeignComponent->foreign_test_method, 'foreign component' ); @@ -34,3 +31,8 @@ is_deeply( \@DBICTest::_InjectBaseTest::ISA, /], 'inject_base filters duplicates' ); + +use_ok('DBIx::Class::AccessorGroup'); +use_ok('DBIx::Class::Componentised'); + +done_testing;