Expand notabs/eol testing to .pod and some files at the root
[dbsrgits/DBIx-Class.git] / t / search / void.t
CommitLineData
0e7a447e 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6
7use lib qw(t/lib);
8use DBICTest;
9
10my $schema = DBICTest->init_schema(no_deploy => 1);
11
12throws_ok {
13 $schema->resultset('Artist')->search
14} qr/\Qsearch is *not* a mutator/, 'Proper exception on search in void ctx';
15
16done_testing;