remove result_class stuff from load_namespaces, better to not do it than to do it...
[dbsrgits/DBIx-Class.git] / t / lib / DBICNSTest / Source / B.pm
1 package DBICNSTest::Source::B;
2 use base qw/DBIx::Class/;
3 __PACKAGE__->load_components(qw/PK::Auto Core/);
4 __PACKAGE__->table('b');
5 __PACKAGE__->add_columns('b');
6 1;