0.07999_05 (2nd 0.08 RC)
[dbsrgits/DBIx-Class.git] / t / 92storage.t
CommitLineData
efe6365b 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
2654e84a 8plan tests => 1;
efe6365b 9
10my $schema = DBICTest->init_schema();
11
12is( ref($schema->storage), 'DBIx::Class::Storage::DBI::SQLite',
13 'Storage reblessed correctly into DBIx::Class::Storage::DBI::SQLite' );
14
151;