diff options
author | Mitch Jackson <mitch@freeside.biz> | 2019-04-11 17:43:39 -0400 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2019-04-11 17:43:39 -0400 |
commit | 40669843fb6bf03fd80cb0311cdfa90aec55bb1a (patch) | |
tree | 62e29c26c632fbe40347e69faf84094520949173 /t/01-use.t | |
parent | 53071f40c4e2d4be41efb018d0233b37bf1c395b (diff) |
Payments API calls working, with some tests
Diffstat (limited to 't/01-use.t')
-rwxr-xr-x | t/01-use.t | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/01-use.t b/t/01-use.t new file mode 100755 index 0000000..19fffb1 --- /dev/null +++ b/t/01-use.t @@ -0,0 +1,8 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More tests => 1; + +BEGIN{ use_ok( 'Business::OnlinePayment::Bambora' ) } + +done_testing(); |