File Coverage

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