| Current Path : /proc/thread-self/root/proc/self/root/usr/share/doc/perl-DBIx-Class/t/ |
| Current File : //proc/thread-self/root/proc/self/root/usr/share/doc/perl-DBIx-Class/t/101source.t |
use warnings;
use strict;
use Test::More;
use Test::Exception;
use lib qw(t/lib);
use DBICTest;
my $schema = DBICTest->init_schema;
throws_ok {$schema->source()} qr/\Qsource() expects a source name/, 'Empty args for source caught';
done_testing();