Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / ForeignComponent.pm
1 #   belongs to t/05components.t
2 package # hide from PAUSE 
3     DBICTest::ForeignComponent;
4 use warnings;
5 use strict;
6
7 use base qw/ DBIx::Class /;
8
9 __PACKAGE__->load_components( qw/ +DBICTest::ForeignComponent::TestComp / );
10
11 1;