diff options
author | ivan <ivan> | 2006-10-18 23:11:55 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-10-18 23:11:55 +0000 |
commit | 39541291959ba143c5a9e8272b45d49aea654f35 (patch) | |
tree | bf457467de08ab63b2188ade1f851d31e947686c /t/credit_card.t | |
parent | 613a646d7362d686c7b1f241b1bb47db50968de7 (diff) |
update test to use Test::More and add hardcoded test account from auth.net, RT#22076
Diffstat (limited to 't/credit_card.t')
-rw-r--r-- | t/credit_card.t | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/t/credit_card.t b/t/credit_card.t index 0063804..8cade30 100644 --- a/t/credit_card.t +++ b/t/credit_card.t @@ -1,19 +1,19 @@ -BEGIN { $| = 1; print "1..1\n"; } +#!/usr/bin/perl -w -#testing/testing is valid and seems to work... -#print "ok 1 # Skipped: need a valid Authorize.Net login/password to test\n"; exit; +use Test::More; +require "t/lib/test_account.pl"; -use Business::OnlinePayment; +my($login, $password) = test_account_or_skip(); +plan tests => 2; + +use_ok 'Business::OnlinePayment'; -my($month, $year) = (localtime)[4,5]; -$year++; # So we expire next year. -$year %= 100; # y2k? What's that? - -my $tx = new Business::OnlinePayment("AuthorizeNet"); +my $tx = Business::OnlinePayment->new("AuthorizeNet"); +$tx->server('test.authorize.net'); $tx->content( type => 'VISA', - login => 'testing', - password => 'testing', + login => $login, + password => $password, action => 'Normal Authorization', description => 'Business::OnlinePayment visa test', amount => '49.95', @@ -26,14 +26,9 @@ $tx->content( state => 'UT', zip => '84058', card_number => '4007000000027', - expiration => sprintf("%02d/%02d", $month, $year), + expiration => expiration_date(), ); $tx->test_transaction(1); # test, dont really charge $tx->submit(); -if($tx->is_success()) { - print "ok 1\n"; -} else { - warn $tx->error_message; - print "not ok 1\n"; -} +ok($tx->is_success()) or diag $tx->error_message; |