remove result_class stuff from load_namespaces, better to not do it than to do it...
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICNSTest / Result / B.pm
1 package DBICNSTest::Result::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;