File Coverage

blib/lib/Net/Amazon/EC2/UserData.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::Amazon::EC2::UserData;
2 2     2   2348 use strict;
  2         4  
  2         84  
3 2     2   15 use Moose;
  2         6  
  2         18  
4              
5             =head1 NAME
6              
7             Net::Amazon::EC2::UserData
8              
9             =head1 DESCRIPTION
10              
11             A class representing EC2 User Data attached to an instance.
12              
13             =head1 ATTRIBUTES
14              
15             =over
16              
17             =item data (required)
18              
19             User data itself which is passed to the instance.
20              
21             =cut
22              
23             has 'data' => ( is => 'ro', isa => '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   18039 no Moose;
  2         7  
  2         15  
41             1;