summaryrefslogtreecommitdiff
path: root/t/lib/test_account.pl
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/test_account.pl')
-rw-r--r--t/lib/test_account.pl16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/lib/test_account.pl b/t/lib/test_account.pl
new file mode 100644
index 0000000..39dd4f6
--- /dev/null
+++ b/t/lib/test_account.pl
@@ -0,0 +1,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;