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/TestFixtures.pm | |
parent | 53071f40c4e2d4be41efb018d0233b37bf1c395b (diff) |
Payments API calls working, with some tests
Diffstat (limited to 't/TestFixtures.pm')
-rwxr-xr-x | t/TestFixtures.pm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/TestFixtures.pm b/t/TestFixtures.pm new file mode 100755 index 0000000..acf2138 --- /dev/null +++ b/t/TestFixtures.pm @@ -0,0 +1,14 @@ +#!/usr/bin/env perl +package TestFixtures; +use strict; +use warnings; + +use Exporter; +use vars qw/ @ISA @EXPORT /; +@ISA = 'Exporter'; +@EXPORT = qw/ + +/; + + +1;
\ No newline at end of file |