File Coverage

blib/lib/Net/Amazon/EC2/AvailabilityZoneMessage.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 Net::Amazon::EC2::AvailabilityZoneMessage;
2 2     2   1669 use Moose;
  2         6  
  2         23  
3              
4             =head1 NAME
5              
6             Net::Amazon::EC2::AvailabilityZoneMessage
7              
8             =head1 DESCRIPTION
9              
10             A class containing messaging associated with an availability zone.
11              
12             =head1 ATTRIBUTES
13              
14             =over
15              
16             =item message (required)
17              
18             The message itself.
19              
20             =cut
21              
22             has 'message' => ( is => 'ro', isa => 'Str', required => 1 );
23              
24             __PACKAGE__->meta->make_immutable();
25              
26             =back
27              
28             =head1 AUTHOR
29              
30             Jeff Kim <cpan@chosec.com>
31              
32             =head1 COPYRIGHT
33              
34             Copyright (c) 2006-2010 Jeff Kim. This program is free software; you can redistribute it and/or modify it
35             under the same terms as Perl itself.
36              
37             =cut
38              
39 2     2   9933 no Moose;
  2         5  
  2         12  
40             1;