summaryrefslogtreecommitdiff
path: root/t/lib/test_account.pl
blob: 39dd4f6c7bc688f9e92eb371c398038a8b8979be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sub test_account {
#  'login' => 'yCaWGYQsSVR0S48B6AKMK07RQhaxHvGu', #test platform
  'login' => 'tSfl065j5F1Z5Uw7jQ2i69z9sd30A6k1',
  'password' => '5432',
}

sub expiration_date {
    my($month, $year) = (localtime)[4,5];
    $month += 1;
    $year++;       # So we expire next year.
    $year %= 100;  # y2k?  What's that?

    return sprintf("%02d/%02d", $month, $year);
}

1;