disable t/credit_card.t test: testdrive account no longer valid BUSINESS_ONLINEPAYMENT_AUTHORIZENET_3_01
authorivan <ivan>
Wed, 14 Nov 2001 21:44:07 +0000 (21:44 +0000)
committerivan <ivan>
Wed, 14 Nov 2001 21:44:07 +0000 (21:44 +0000)
AuthorizeNet.pm
Changes
t/credit_card.t

index 80fcbbb..00c8962 100644 (file)
@@ -1,6 +1,6 @@
 package Business::OnlinePayment::AuthorizeNet;
 
-# $Id: AuthorizeNet.pm,v 1.1 2001-09-01 21:47:31 ivan Exp $
+# $Id: AuthorizeNet.pm,v 1.2 2001-11-14 21:44:07 ivan Exp $
 
 use strict;
 use Business::OnlinePayment;
@@ -13,7 +13,7 @@ require Exporter;
 @ISA = qw(Exporter AutoLoader Business::OnlinePayment);
 @EXPORT = qw();
 @EXPORT_OK = qw();
-$VERSION = '3.00';
+$VERSION = '3.01';
 
 sub set_defaults {
     my $self = shift;
diff --git a/Changes b/Changes
index 56e001f..7fd8f73 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,8 @@
 Revision history for Perl extension Business::OnlinePayment::AuthorizeNet.
 
-3.01  unreleased
+3.01  Wed Nov 14 13:42:06 2001
        - update README
+       - disable t/credit_card.t test; testdrive account no longer valid
 
 3.00  Sat Sep  1 13:29:34 2001
        - new maintainer, updated for Authorize.Net API 3.0
index aa8b35c..df6c001 100644 (file)
@@ -1,12 +1,14 @@
 BEGIN { $| = 1; print "1..1\n"; }
 
+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          => 'testdrive', # CHANGE THESE TO TEST
+    password       => 'testdrive', #
     action         => 'Normal Authorization',
     description    => 'Business::OnlinePayment visa test',
     amount         => '49.95',
@@ -19,7 +21,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();