File Coverage

blib/lib/Mail/SendGrid/Bounce.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Mail::SendGrid::Bounce;
2             $Mail::SendGrid::Bounce::VERSION = '0.08';
3             # ABSTRACT: data object that holds information about a SendGrid bounce
4 2     2   11 use strict;
  2         4  
  2         58  
5 2     2   10 use warnings;
  2         2  
  2         44  
6              
7 2     2   33 use 5.008;
  2         7  
8 2     2   9 use Mouse 0.94;
  2         29  
  2         16  
9              
10             has 'email' => (is => 'ro', isa => 'Str', required => 1);
11             has 'created' => (is => 'ro', isa => 'Str', required => 1);
12             has 'status' => (is => 'ro', isa => 'Str', required => 1);
13             has 'reason' => (is => 'ro', isa => 'Str', required => 1);
14              
15             1;
16              
17             __END__