- initial "use" test that will BAIL_OUT if we fail
[Business-OnlinePayment.git] / t / 00load.t
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");
+}