Allow specifying a custom loader_class in loader_options
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / TestLoaderSubclass.pm
1 package TestLoaderSubclass;
2
3 use strict;
4 use warnings;
5 use base qw/DBIx::Class::Schema::Loader::DBI::SQLite/;
6
7 1;