projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a7014593d7512ba2ae141d0d7805c999f307623c
[dbsrgits/DBIx-Class.git]
/
t
/
lib
/
DBICTest
/
ForeignComponent.pm
1
# belongs to t/05components.t
2
package DBICTest::ForeignComponent;
3
use warnings;
4
use strict;
5
6
use base qw/ DBIx::Class /;
7
8
__PACKAGE__->load_components( qw/ +DBICTest::ForeignComponent::TestComp / );
9
10
1;