added code and tests for Componentized::ensure_class_found and load_optional_class
[dbsrgits/DBIx-Class.git] / t / 92storage.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 plan tests => 1;
9
10 my $schema = DBICTest->init_schema();
11
12 is( ref($schema->storage), 'DBIx::Class::Storage::DBI::SQLite',
13     'Storage reblessed correctly into DBIx::Class::Storage::DBI::SQLite' );
14
15 1;