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