initial commit
[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 Moose::Role;
11
12 has 'test_mode' => (
13   is => 'rw',
14   isa => 'Bool',
15   default => 0,
16 );
17
18 1;