From 8cda2398c5b23f5c76fcfa1ca9b0bf4770fc6a3c Mon Sep 17 00:00:00 2001 From: plobbes Date: Fri, 19 Jan 2007 16:14:57 +0000 Subject: [PATCH] - initial "use" test that will BAIL_OUT if we fail --- t/00load.t | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 t/00load.t 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"); +} -- 2.20.1