Move a number of tests to xt, restructure extra lists
[dbsrgits/DBIx-Class.git] / t / search / void.t
diff --git a/t/search/void.t b/t/search/void.t
deleted file mode 100644 (file)
index 95a040f..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-use strict;
-use warnings;
-
-use Test::More;
-use Test::Exception;
-
-use lib qw(t/lib);
-use DBICTest;
-
-my $schema = DBICTest->init_schema(no_deploy => 1);
-
-throws_ok {
-  $schema->resultset('Artist')->search
-} qr/\Qsearch is *not* a mutator/, 'Proper exception on search in void ctx';
-
-done_testing;