- initial "use" test that will BAIL_OUT if we fail
authorplobbes <plobbes>
Fri, 19 Jan 2007 16:14:57 +0000 (16:14 +0000)
committerplobbes <plobbes>
Fri, 19 Jan 2007 16:14:57 +0000 (16:14 +0000)
t/00load.t [new file with mode: 0644]

diff --git a/t/00load.t b/t/00load.t
new file mode 100644 (file)
index 0000000..7f4f8c5
--- /dev/null
@@ -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");
+}