error callbacks, more structure for parse/format methods
[Business-BatchPayment.git] / BatchPayment / TestMode.pm
1 package Business::BatchPayment::TestMode;
2
3 =head1 DESCRIPTION
4
5 The 'test_mode' attribute.  A module that does this role is promising that
6 requests will not be submitted to a live account if test_mode is true.
7
8 =cut
9
10 use strict;
11 use Moose::Role;
12
13 has 'test_mode' => (
14   is => 'rw',
15   isa => 'Bool',
16   default => 0,
17 );
18
19 1;