Added weird passes/failes test
[dbsrgits/DBIx-Class.git] / t / lib / DBICNSTest / RtBug41083 / Schema / A.pm
1 package DBICNSTest::RtBug41083::Schema::A;
2 use strict;
3 use warnings;
4 use base 'DBIx::Class';
5 __PACKAGE__->load_components('Core');
6 __PACKAGE__->table('a');
7 __PACKAGE__->add_columns('a');
8 1;