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