initial import
[Business-OnlinePayment-eSelectPlus.git] / t / credit_card.t
1 BEGIN { $| = 1; print "1..1\n"; }
2
3 eval "use Net::SSLeay;";
4 if ( $@ ) {
5   print "ok 1 # Skipped: Net::SSLeay is not installed\n"; exit;
6 }
7
8 use Business::OnlinePayment;
9
10 my $tx = new Business::OnlinePayment("eSelectPlus");
11
12 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
13 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
14 #$Business::OnlinePayment::eSelectPlus::DEBUG = 1;
15 #$Business::OnlinePayment::eSelectPlus::DEBUG = 1;
16
17 $tx->content(
18     type           => 'VISA',
19     login          => 'store1',
20     password       => 'yesguy',
21     action         => 'Normal Authorization',
22     amount         => '54.01',
23     card_number    => '4242424242424242',
24     expiration     => '01/06',
25 );
26 $tx->test_transaction(1); # test, dont really charge
27 $tx->submit();
28
29 if($tx->is_success()) {
30     print "ok 1\n";
31 } else {
32     #warn $tx->server_response."\n";
33     warn $tx->error_message. "\n";
34     print "not ok 1\n";
35 }
36