initial checkin for UserStamp
[dbsrgits/DBIx-Class-UserStamp.git] / t / 01basic.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_ok('DBIx::Class::UserStamp');
13