diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-07-09 12:13:23 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-07-09 12:13:23 -0700 |
commit | f6660ccc1cf3719650dc179aa7b1fd117b07ed0b (patch) | |
tree | 76a750ca7ebe6fee19507681060e4642f947514b /t/00-load.t |
initial try at a module
Diffstat (limited to 't/00-load.t')
-rw-r--r-- | t/00-load.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/00-load.t b/t/00-load.t new file mode 100644 index 0000000..1a0cc65 --- /dev/null +++ b/t/00-load.t @@ -0,0 +1,10 @@ +#!perl -T + +use Test::More tests => 1; + +BEGIN { + use_ok( 'Business::OnlinePayment::FirstDataGlobalGateway' ) || print "Bail out! +"; +} + +diag( "Testing Business::OnlinePayment::FirstDataGlobalGateway $Business::OnlinePayment::FirstDataGlobalGateway::VERSION, Perl $], $^X" ); |