summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorivan <ivan>2011-03-06 22:07:35 +0000
committerivan <ivan>2011-03-06 22:07:35 +0000
commitfc2a9793683937105d8d6783a0fbe1b2d9da427f (patch)
tree536a9a526799b3c56730f501a095c9434281ef7f /t/lib
parent83309c958dae922b96d3543dab3178091b5909a9 (diff)
test fixes
Diffstat (limited to 't/lib')
-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;