initial import
[Business-OnlinePayment-eSec.git] / t / credit_card.t
1 BEGIN { $| = 1; print "1..1\n"; }
2
3 use Business::OnlinePayment;
4
5 my $tx = new Business::OnlinePayment("eSec");
6 $tx->content(
7     type           => 'CC',
8     login          => 'test', #EPS_MERCHANT
9     action         => 'Authorization only',
10     description    => 'Business::OnlinePayment visa test',
11     amount         => '49.95',
12     invoice_number => '100100',
13     customer_id    => 'jsk',
14     name           => 'Tofu Beast',
15     first_name     => 'Tofu',
16     last_name      => 'Beast',
17     address        => '123 Anystreet',
18     city           => 'Anywhere',
19     state          => 'UT',
20     zip            => '84058',
21     card_number    => 'testsuccess',
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->error_message. "*******";
31     print "not ok 1\n";
32 }