From: plobbes Date: Fri, 19 Jan 2007 16:14:57 +0000 (+0000) Subject: - initial "use" test that will BAIL_OUT if we fail X-Git-Tag: BUSINESS_ONLINEPAYMENT_3_00_06~11 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=8cda2398c5b23f5c76fcfa1ca9b0bf4770fc6a3c;p=Business-OnlinePayment.git - initial "use" test that will BAIL_OUT if we fail --- diff --git a/t/00load.t b/t/00load.t new file mode 100644 index 0000000..7f4f8c5 --- /dev/null +++ b/t/00load.t @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +use strict; +use warnings; +use Test::More tests => 1; + +BEGIN { + use_ok("Business::OnlinePayment") + or BAIL_OUT("unable to load Business::OnlinePayment\n"); +}