File Coverage

blib/lib/Net/Amazon/EC2/IpRange.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::IpRange;
2 2     2   1307 use Moose;
  2         4  
  2         15  
3              
4             =head1 NAME
5              
6             Net::Amazon::EC2::IpRange
7              
8             =head1 DESCRIPTION
9              
10             A class representing an IP range (CIDR).
11              
12             =head1 ATTRIBUTES
13              
14             =over
15              
16             =item cidr_ip (required)
17              
18             CIDR IP Range.
19              
20             =back
21              
22             =cut
23              
24             has 'cidr_ip' => ( is => 'ro', isa => 'Str' );
25              
26             __PACKAGE__->meta->make_immutable();
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   9053 no Moose;
  2         4  
  2         11  
40             1;