diff options
author | plobbes <plobbes> | 2007-01-14 19:40:06 +0000 |
---|---|---|
committer | plobbes <plobbes> | 2007-01-14 19:40:06 +0000 |
commit | bc8e95f563252b3412700153f370a0f0597b6dcf (patch) | |
tree | 3c8a9719305bb92f0146f9fba785c1f42312bcf0 /t/bop.t | |
parent | ac87a6d1b67c9f274900945b80d1abda7ba2031f (diff) |
- Switch to using Test::More
Diffstat (limited to 't/bop.t')
-rw-r--r-- | t/bop.t | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,5 +1,7 @@ -BEGIN { $| = 1; print "1..1\n"; } -END {print "not ok 1\n" unless $loaded;} -use Business::OnlinePayment; -$loaded = 1; -print "ok 1\n"; +#!/usr/bin/perl + +use strict; +use warnings; +use Test::More tests => 1; + +use_ok("Business::OnlinePayment"); |