Fixed case where no uuid module found so that it dies with error, not with method...
[dbsrgits/DBIx-Class-UUIDColumns.git] / t / lib / CustomUUIDMaker.pm
CommitLineData
773544fd 1package CustomUUIDMaker;
2
3use strict;
4use warnings;
5
6use base qw/DBIx::Class::UUIDColumns::UUIDMaker/;
7use Data::UUID ();
8
9sub as_string {
10 return Data::UUID->new->to_string(Data::UUID->new->create);
11};
12
131;
14__END__