File Coverage

blib/lib/Net/Amazon/EC2/GroupSet.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::GroupSet;
2 2     2   1250 use Moose;
  2         4  
  2         16  
3              
4             =head1 NAME
5              
6             Net::Amazon::EC2::GroupSet
7              
8             =head1 DESCRIPTION
9              
10             A class containing information about a group.
11              
12             =head1 ATTRIBUTES
13              
14             =over
15              
16             =item group_id (required)
17              
18             The ID of the group.
19              
20             =cut
21              
22             has 'group_id' => ( is => 'ro', isa => 'Str', required => 1 );
23             has 'group_name' => ( is => 'ro', isa => 'Maybe[Str]', required => 1 );
24              
25             __PACKAGE__->meta->make_immutable();
26              
27             =back
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   13434 no Moose;
  2         5  
  2         13  
41             1;