From: plobbes Date: Sun, 14 Jan 2007 19:40:06 +0000 (+0000) Subject: - Switch to using Test::More X-Git-Tag: BUSINESS_ONLINEPAYMENT_PAYFLOWPRO_0_05~16 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-PayflowPro.git;a=commitdiff_plain;h=bc8e95f563252b3412700153f370a0f0597b6dcf - Switch to using Test::More --- diff --git a/t/bop.t b/t/bop.t index 64332c5..504071e 100644 --- a/t/bop.t +++ b/t/bop.t @@ -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");