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