added code and tests for Componentized::ensure_class_found and load_optional_class
[dbsrgits/DBIx-Class.git] / t / 92storage.t
diff --git a/t/92storage.t b/t/92storage.t
new file mode 100644 (file)
index 0000000..67a594f
--- /dev/null
@@ -0,0 +1,15 @@
+use strict;
+use warnings;  
+
+use Test::More;
+use lib qw(t/lib);
+use DBICTest;
+
+plan tests => 1;
+
+my $schema = DBICTest->init_schema();
+
+is( ref($schema->storage), 'DBIx::Class::Storage::DBI::SQLite',
+    'Storage reblessed correctly into DBIx::Class::Storage::DBI::SQLite' );
+
+1;