projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix missing true return lost during e5a62c46f
[dbsrgits/DBIx-Class.git]
/
t
/
101source.t
1
use warnings;
2
use strict;
3
4
use Test::More;
5
use Test::Exception;
6
7
use lib qw(t/lib);
8
use DBICTest;
9
10
my $schema = DBICTest->init_schema;
11
12
throws_ok {$schema->source()} qr/\Qsource() expects a source name/, 'Empty args for source caught';
13
14
done_testing();