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
CommitLineData
25fb14bd 1package DBICNSTest::Source::B;
44930c36 2use base qw/DBIx::Class/;
3__PACKAGE__->load_components(qw/PK::Auto Core/);
4__PACKAGE__->table('b');
5__PACKAGE__->add_columns('b');
61;