diff options
author | ivan <ivan> | 2001-09-01 21:47:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-01 21:47:31 +0000 |
commit | a906edd8acfc363934aecc7b035e92aad117f602 (patch) | |
tree | 1e97b74883d02fa9c9061ee5fc1c0d81ac0d4751 /t/credit_card.t |
initial importSTARTBUSINESS_ONLINEPAYMENT_AUTHORIZENET_3_00
Diffstat (limited to 't/credit_card.t')
-rw-r--r-- | t/credit_card.t | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/t/credit_card.t b/t/credit_card.t new file mode 100644 index 0000000..aa8b35c --- /dev/null +++ b/t/credit_card.t @@ -0,0 +1,31 @@ +BEGIN { $| = 1; print "1..1\n"; } + +use Business::OnlinePayment; + +my $tx = new Business::OnlinePayment("AuthorizeNet"); +$tx->content( + type => 'VISA', + login => 'testdrive', + password => 'testdrive', + action => 'Normal Authorization', + description => 'Business::OnlinePayment visa test', + amount => '49.95', + invoice_number => '100100', + customer_id => 'jsk', + first_name => 'Tofu', + last_name => 'Beast', + address => '123 Anystreet', + city => 'Anywhere', + state => 'UT', + zip => '84058', + card_number => '4007000000027', + expiration => '08/26', +); +$tx->test_transaction(1); # test, dont really charge +$tx->submit(); + +if($tx->is_success()) { + print "ok 1\n"; +} else { + print "not ok 1\n"; +} |