summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorplobbes <plobbes>2007-01-19 16:14:57 +0000
committerplobbes <plobbes>2007-01-19 16:14:57 +0000
commit8cda2398c5b23f5c76fcfa1ca9b0bf4770fc6a3c (patch)
tree232865d4435d7cca80d4bd92d8d33768056decc3
parent873a729130e7a63a490afbd2db84bbfcdbe0efb8 (diff)
- initial "use" test that will BAIL_OUT if we fail
-rw-r--r--t/00load.t10
1 files changed, 10 insertions, 0 deletions
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");
+}