summaryrefslogtreecommitdiff
path: root/t/00load.t
diff options
context:
space:
mode:
authorplobbes <plobbes>2007-01-19 05:25:02 +0000
committerplobbes <plobbes>2007-01-19 05:25:02 +0000
commit29900bbdb208240837822c20ab3bcd72ad8a1a6a (patch)
treed31b82eddcb44301f4c46cee2a991565d542580b /t/00load.t
parentda47837ad2e5a0d32e96393a557ab3a8df32c2bb (diff)
- 00load.t replaces bop.t and load.t and now uses Test::More::BAIL_OUT
Diffstat (limited to 't/00load.t')
-rw-r--r--t/00load.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/00load.t b/t/00load.t
new file mode 100644
index 0000000..0eb8c34
--- /dev/null
+++ b/t/00load.t
@@ -0,0 +1,13 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use Test::More tests => 2;
+
+BEGIN {
+ use_ok("Business::OnlinePayment")
+ or BAIL_OUT("unable to load Business::OnlinePayment\n");
+
+ use_ok("Business::OnlinePayment::PayflowPro")
+ or BAIL_OUT("unable to load Business::OnlinePayment::PayflowPro\n");
+}