File Coverage

blib/lib/Email/Sender/Success.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Email::Sender::Success 1.500;
2             # ABSTRACT: the result of successfully sending mail
3              
4 12     12   1839 use Moo;
  12         5006  
  12         90  
5              
6             #pod =head1 DESCRIPTION
7             #pod
8             #pod An Email::Sender::Success object is just an indicator that an email message was
9             #pod successfully sent. Unless extended, it has no properties of its own.
10             #pod
11             #pod =cut
12              
13 12     12   5850 no Moo;
  12         27  
  12         46  
14             1;
15              
16             __END__