test to make sure the errors in components of resultset classes are reported right.
[dbsrgits/DBIx-Class.git] / t / lib / DBICErrorTest / Schema / SourceWithError.pm
CommitLineData
c9d5a251 1package DBICErrorTest::Schema::SourceWithError;
2
3use strict;
4use warnings;
5
6use base 'DBIx::Class';
7__PACKAGE__->load_components('Core');
8__PACKAGE__->table('foo');
9#__PACKAGE__->load_components('+DBICErrorTest::SyntaxError');
10require DBICErrorTest::ResultSet::WithError;
11__PACKAGE__->resultset_class('DBICErrorTest::ResultSet::WithError');
12
131;