Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICNSTest / Bogus / B.pm
1 package DBICNSTest::Result::B;
2
3 use warnings;
4 use strict;
5
6 use base qw/DBIx::Class::Core/;
7 __PACKAGE__->table('b');
8 __PACKAGE__->add_columns('b');
9 1;