Skip Menu |

This queue is for tickets about the Data-Faker CPAN distribution.

Report information
The Basics
Id: 26963
Status: new
Priority: 0/
Queue: Data-Faker

People
Owner: Nobody in particular
Requestors: MARKSTOS [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: wish: limit fake dates to the future
Sometimes it's useful to generate test dates that are only in the future, for example, with credit card expiration dates. Here's some sample code that could help generate one with DateTime: my $rand_day = $min_days + int(rand $max_days); $dt_obj->add( days => $rand_day ); Mark