37e1243aae862ede829be48e16ff887416190baf
[Business-OnlinePayment-OpenECHO.git] / t / bad_check.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 # checks are broken it seems
11 my $ctx = new Business::OnlinePayment("OpenECHO",
12   payee          => 'Tofu Heavy Enterprises, GmbH',
13 );
14 $ctx->content(
15     type           => 'ECHECK',
16     'login'        => '123>4685706',
17     'password'     => '09437869',
18     action         => 'Normal Authorization',
19     amount         => '49.95',
20     invoice_number => '100100',
21     customer_id    => 'jsk',
22     first_name     => 'Tofu',
23     last_name      => 'Beast',
24     account_number => '12345',
25     routing_code   => '026009593',
26     bank_name      => 'First National Test Bank',
27     phone          => '420-420-5454',
28     #payee          => 'Tofu Heavy Enterprises, GmbH',
29     check_number   => '420',
30 );
31 $ctx->test_transaction(1); # test, dont really charge
32 $ctx->submit();
33
34 print $ctx->is_success()."\n";
35
36 if($ctx->is_success()) {
37     #warn $ctx->error_message();
38     print "not ok 1 (".$ctx->error_message().")\n";
39 } else {
40     print "ok 1\n";
41 }