summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorplobbes <plobbes>2007-01-14 19:38:51 +0000
committerplobbes <plobbes>2007-01-14 19:38:51 +0000
commitac87a6d1b67c9f274900945b80d1abda7ba2031f (patch)
tree8a64965623dd645c5a2aff5e77e603785579d269
parentda8b97f9344e532b51e329815dc05a3baca445ff (diff)
- switch to using Test::More
-rw-r--r--t/load.t12
1 files changed, 7 insertions, 5 deletions
diff --git a/t/load.t b/t/load.t
index d2a7f26..a5fed5e 100644
--- a/t/load.t
+++ b/t/load.t
@@ -1,5 +1,7 @@
-BEGIN { $| = 1; print "1..1\n"; }
-END {print "not ok 1\n" unless $loaded;}
-use Business::OnlinePayment::PayflowPro;
-$loaded = 1;
-print "ok 1\n";
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use Test::More tests => 1;
+
+use_ok("Business::OnlinePayment::PayflowPro");