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