summaryrefslogtreecommitdiff
path: root/t/credit_card.t
diff options
context:
space:
mode:
authorivan <ivan>2003-10-24 16:43:19 +0000
committerivan <ivan>2003-10-24 16:43:19 +0000
commit99a03593b7904a1884b3922508fed19df5a9c852 (patch)
tree685031f293a52c8b68da99cb52e6bb5abb9c351e /t/credit_card.t
initial importHEADSTARTmaster
Diffstat (limited to 't/credit_card.t')
-rw-r--r--t/credit_card.t35
1 files changed, 35 insertions, 0 deletions
diff --git a/t/credit_card.t b/t/credit_card.t
new file mode 100644
index 0000000..349caae
--- /dev/null
+++ b/t/credit_card.t
@@ -0,0 +1,35 @@
+BEGIN { $| = 1; print "1..1\n"; }
+
+#testing/testing is valid and seems to work...
+#print "ok 1 # Skipped: need a valid iPayment login/password to test\n"; exit;
+
+use Business::OnlinePayment;
+
+my $tx = new Business::OnlinePayment("IPaymentTPG");
+$tx->content(
+ login => 'testing', #CHANGE THESE TO TEST
+ password => 'testing', #
+ type => 'VISA',
+ 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/06',
+);
+$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";
+}