X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=t%2Fcredit_card.t;h=df6c00136e3be6cefdb7fdcc1e9c6884c424fc92;hb=ba95dc2cdb193b513fcdd4ad33ae4b523ec0f32a;hp=aa8b35cfca0ff8be03adbd16c3697358c3cd6420;hpb=a86f919685ea69045204881c6ece8155e7ebf816;p=Business-OnlinePayment-AuthorizeNet.git diff --git a/t/credit_card.t b/t/credit_card.t index aa8b35c..df6c001 100644 --- a/t/credit_card.t +++ b/t/credit_card.t @@ -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();