Add explicit patronage listing (should have done this a while ago)
[dbsrgits/DBIx-Class.git] / t / resultsource / bare_resultclass_exception.t
CommitLineData
4f52479b 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6
7use lib 't/lib';
8use DBICTest;
9
10{
11 package DBICTest::Foo;
12 use base "DBIx::Class::Core";
13}
14
15throws_ok { DBICTest::Foo->new("urgh") } qr/must be a hashref/;
16
17done_testing;