diff options
author | jeff <jeff> | 2007-09-26 21:53:00 +0000 |
---|---|---|
committer | jeff <jeff> | 2007-09-26 21:53:00 +0000 |
commit | 33468536729cb00592ce4ac4af3594b32a8bddb5 (patch) | |
tree | 2f6bcabb3610db3eb18c81fcadc71d370f1090d6 /t/00load.t |
Initial importstart
Diffstat (limited to 't/00load.t')
-rw-r--r-- | t/00load.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/00load.t b/t/00load.t new file mode 100644 index 0000000..db03d45 --- /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::viaKLIX") + or BAIL_OUT("unable to load Business::OnlinePayment::viaKLIX\n"); +} |