summaryrefslogtreecommitdiff
path: root/t/01-use.t
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2019-04-11 17:43:39 -0400
committerMitch Jackson <mitch@freeside.biz>2019-04-11 17:43:39 -0400
commit40669843fb6bf03fd80cb0311cdfa90aec55bb1a (patch)
tree62e29c26c632fbe40347e69faf84094520949173 /t/01-use.t
parent53071f40c4e2d4be41efb018d0233b37bf1c395b (diff)
Payments API calls working, with some tests
Diffstat (limited to 't/01-use.t')
-rwxr-xr-xt/01-use.t8
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();