Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICNSTest / Result / A.pm
CommitLineData
c87014e8 1package DBICNSTest::Result::A;
4a233f30 2
3use warnings;
4use strict;
5
d88ecca6 6use base qw/DBIx::Class::Core/;
44930c36 7__PACKAGE__->table('a');
8__PACKAGE__->add_columns('a');
91;