added changelog, boilerplate POD and README, tests. use test_transaction flag,...
[Business-OnlinePayment-Skipjack.git] / t / crypt_credit_card_mc.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("Skipjack");
15
16 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
17 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
18 #$Business::OnlinePayment::Skipjack::DEBUG = 1;
19 #$Business::OnlinePayment::Skipjack::DEBUG = 1;
20
21 $tx->content(
22     type           => 'VISA',
23     login          => '000944785470', # "HTML serial number"
24     action         => 'Normal Authorization',
25     description    => 'Business::OnlinePayment::Skipjack test',
26     amount         => '32',
27     card_number    => '5121212121212124',
28     expiration     => '03/10',
29     name           => 'Tofu Beast',
30     address        => '123 Anystreet',
31     city           => 'Anywhere',
32     state          => 'UT',
33     zip            => '84058',
34     phone          => '415-420-5454',
35     email          => 'ivan-skipjack-test@420.am',
36 );
37 $tx->test_transaction(1); # test, dont really charge
38 $tx->submit();
39
40 if($tx->is_success()) {
41     print "ok 1\n";
42 } else {
43     #warn $tx->server_response."\n";
44     warn $tx->error_message. "\n";
45     print "not ok 1\n";
46 }
47