a0db0eb80c14b5b9d1931721a4a8ea8f398ac128
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / backcompat / 0.04006 / 21misc_fatal.t
1 use strict;
2 use Test::More;
3 use lib qw(t/backcompat/0.04006/lib);
4 use make_dbictest_db;
5 use Test::More;
6 plan skip_all => 'set SCHEMA_LOADER_TESTS_BACKCOMPAT to enable these tests'
7     unless $ENV{SCHEMA_LOADER_TESTS_BACKCOMPAT};
8
9
10 {
11     $INC{'DBIx/Class/Storage/xyzzy.pm'} = 1;
12     package DBIx::Class::Storage::xyzzy;
13     use base qw/ DBIx::Class::Storage /;
14     sub new { bless {}, shift }
15     sub connect_info { @_ }
16
17     package DBICTest::Schema;
18     use base qw/ DBIx::Class::Schema::Loader /;
19     __PACKAGE__->loader_options( really_erase_my_files => 1 );
20     __PACKAGE__->storage_type( '::xyzzy' );
21 }
22
23 plan tests => 1;
24
25 eval { DBICTest::Schema->connect($make_dbictest_db::dsn) };
26 like(
27     $@,
28     qr/Could not load storage_type loader "DBIx::Class::Schema::Loader::xyzzy": /,
29     'Bad storage type dies correctly'
30 );