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