remove cruft
[Business-OnlinePayment-AuthorizeNet.git] / t / credit_card.t
index aa8b35c..a41e14e 100644 (file)
@@ -1,12 +1,15 @@
 BEGIN { $| = 1; print "1..1\n"; }
 
+#testing/testing is valid and seems to work...
+#print "ok 1 # Skipped: need a valid Authorize.Net login/password to test\n"; exit;
+
 use Business::OnlinePayment;
 
 my $tx = new Business::OnlinePayment("AuthorizeNet");
 $tx->content(
     type           => 'VISA',
-    login          => 'testdrive',
-    password       => 'testdrive',
+    login          => 'testing',
+    password       => 'testing',
     action         => 'Normal Authorization',
     description    => 'Business::OnlinePayment visa test',
     amount         => '49.95',
@@ -19,7 +22,7 @@ $tx->content(
     state          => 'UT',
     zip            => '84058',
     card_number    => '4007000000027',
-    expiration     => '08/26',
+    expiration     => '08/06',
 );
 $tx->test_transaction(1); # test, dont really charge
 $tx->submit();
@@ -27,5 +30,6 @@ $tx->submit();
 if($tx->is_success()) {
     print "ok 1\n";
 } else {
+    #warn $tx->error_message;
     print "not ok 1\n";
 }