rename restrict by user
[dbsrgits/DBIx-Class-Schema-RestrictWithObject.git] / t / 04basic.t
CommitLineData
772c89c1 1use strict;
2use warnings;
3use Test::More;
4
5BEGIN {
6 eval "use DBD::SQLite";
7 plan $@
8 ? ( skip_all => 'needs DBD::SQLite for testing' )
9 : ( tests => 1 );
10}
11
12use lib qw(t/lib);
13
14use_ok('DBIx::Class::Schema::RestrictByUser');