diff options
Diffstat (limited to 't/check.t')
-rw-r--r-- | t/check.t | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,8 @@ -BEGIN { $| = 1; print "1..1\n"; } +#BEGIN { $| = 1; print "1..1\n"; } +use Test::More tests => 1; + +SKIP: { + skip "test account no longer available", 1; use Business::OnlinePayment; @@ -28,3 +32,5 @@ if($ctx->is_success()) { warn $ctx->result_code. ': '. $ctx->error_message(); print "not ok 1 (".$ctx->error_message().")\n"; } + +} |