RT#22364 (ASH) hopefully fixed with updated prereq
[dbsrgits/DBIx-Class-UUIDColumns.git] / t / lib / CustomUUIDMaker.pm
1 package CustomUUIDMaker;
2
3 use strict;
4 use warnings;
5
6 use base qw/DBIx::Class::UUIDColumns::UUIDMaker/;
7
8 sub as_string {
9     return '12345678-1234-2345-3456-123456789090';
10 };
11
12 1;
13 __END__