remove unnecessary BEGIN block
authorplobbes <plobbes>
Fri, 19 Jan 2007 05:29:23 +0000 (05:29 +0000)
committerplobbes <plobbes>
Fri, 19 Jan 2007 05:29:23 +0000 (05:29 +0000)
t/00load.t

index 0eb8c34..32f49fc 100644 (file)
@@ -4,10 +4,8 @@ use strict;
 use warnings;
 use Test::More tests => 2;
 
 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");