blob: b86082b0287dd5ba01708baffe52dc0e2f208615 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
sub test_account_or_skip {
my($login, $password) = test_account();
unless( defined $login ) {
plan skip_all => "No test account";
}
return($login, $password);
}
sub test_account {
open TEST_ACCOUNT, "t/test_account" or return;
my($login, $password) = <TEST_ACCOUNT>;
chomp $login;
chomp $password;
return($login, $password);
}
sub expiration_date {
my($month, $year) = (localtime)[4,5];
$year++; # So we expire next year.
$year %= 100; # y2k? What's that?
return sprintf("%02d/%02d", $month, $year);
}
1;
|