File Coverage

blib/lib/Clustericious/Client/Object/Params.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package Clustericious::Client::Object::Params;
2              
3 2     2   1369 use strict;
  2         5  
  2         52  
4 2     2   9 use warnings;
  2         5  
  2         50  
5 2     2   8 use base 'Clustericious::Client::Object';
  2         4  
  2         469  
6              
7             # ABSTRACT: object parameters
8             our $VERSION = '1.27'; # VERSION
9              
10              
11             sub new
12             {
13 1     1 1 426 my $class = shift;
14 1         2 my ($paramlist) = @_;
15              
16 1         2 $class->SUPER::new({ map { $_->{name} => $_->{value} } @$paramlist });
  2         10  
17             }
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Clustericious::Client::Object::Params - object parameters
30              
31             =head1 VERSION
32              
33             version 1.27
34              
35             =head1 SYNOPSIS
36              
37             my $data =
38             [
39             { name => 'foo', value => 'foovalue' },
40             { name => 'bar', value => 'barvalue' }
41             ];
42              
43             my $obj = Clustericious::Client::Object::Params->new($data);
44              
45             $obj->{foo} -> 'foovalue';
46             $obj->{bar} -> 'barvalue';
47              
48             =head1 DESCRIPTION
49              
50             Takes an array reference of hashes with 'name' and 'value' keys and
51             transforms it into a single flattened hash of name => value.
52              
53             =head1 METHODS
54              
55             =head2 new
56              
57             my $obj = Clustericious::Client::Object::Params->new($data);
58              
59             =head1 AUTHOR
60              
61             Original author: Brian Duggan
62              
63             Current maintainer: Graham Ollis E<lt>plicease@cpan.orgE<gt>
64              
65             Contributors:
66              
67             Curt Tilmes
68              
69             Yanick Champoux
70              
71             =head1 COPYRIGHT AND LICENSE
72              
73             This software is copyright (c) 2013 by NASA GSFC.
74              
75             This is free software; you can redistribute it and/or modify it under
76             the same terms as the Perl 5 programming language system itself.
77              
78             =cut