Fixed case where no uuid module found so that it dies with error, not with method...
[dbsrgits/DBIx-Class-UUIDColumns.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 => 2 );       
10 }
11
12 use lib qw(t/lib);
13
14 use_ok('DBIx::Class::UUIDColumns');
15 use_ok('DBIx::Class::UUIDColumns::UUIDMaker');