From: plobbes Date: Fri, 19 Jan 2007 05:29:23 +0000 (+0000) Subject: remove unnecessary BEGIN block X-Git-Tag: BUSINESS_ONLINEPAYMENT_PAYFLOWPRO_0_05~11 X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment-PayflowPro.git;a=commitdiff_plain;h=72478e8d17e5035110a3a2d1fdd5b232f1c522a6 remove unnecessary BEGIN block --- diff --git a/t/00load.t b/t/00load.t index 0eb8c34..32f49fc 100644 --- a/t/00load.t +++ b/t/00load.t @@ -4,10 +4,8 @@ use strict; use warnings; use Test::More tests => 2; -BEGIN { - use_ok("Business::OnlinePayment") - or BAIL_OUT("unable to load Business::OnlinePayment\n"); +use_ok("Business::OnlinePayment") + or BAIL_OUT("unable to load Business::OnlinePayment\n"); - use_ok("Business::OnlinePayment::PayflowPro") - or BAIL_OUT("unable to load Business::OnlinePayment::PayflowPro\n"); -} +use_ok("Business::OnlinePayment::PayflowPro") + or BAIL_OUT("unable to load Business::OnlinePayment::PayflowPro\n");