File Coverage

blib/lib/Net/OpenSocial/Client/Type/Operation.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package Net::OpenSocial::Client::Type::Operation;
2              
3 1     1   5 use strict;
  1         2  
  1         24  
4 1     1   5 use warnings;
  1         2  
  1         19  
5              
6 1     1   5 use base 'Exporter';
  1         2  
  1         95  
7              
8             our @EXPORT_OK = qw(GET CREATE UPDATE DELETE);
9              
10 1     1   4 use constant GET => 'get';
  1         1  
  1         50  
11 1     1   4 use constant CREATE => 'create';
  1         2  
  1         44  
12 1     1   5 use constant UPDATE => 'update';
  1         1  
  1         35  
13 1     1   10 use constant DELETE => 'delete';
  1         1  
  1         49  
14              
15             1;
16              
17             =head1 NAME
18              
19             Net::OpenSocial::Client::Type::Operation - Constants for operation-type
20              
21             =head1 SYNOPSIS
22              
23             use Net::OpenSocial::Client::Type::Operation qw(GET CREATE UPDATE DELETE);
24             say GET;
25             say CREATE;
26             say UPDATE;
27             say DELETE;
28              
29             =head1 DESCRIPTION
30              
31             Constants for operation-type
32              
33             =head1 VALUES
34              
35             =over 4
36              
37             =item GET
38              
39             =item CREATE
40              
41             =item UPDATE
42              
43             =item DELETE
44              
45             =back
46              
47             =head1 AUTHOR
48              
49             Lyo Kato, Elyo.kato@gmail.comE
50              
51             =head1 COPYRIGHT AND LICENSE
52              
53             Copyright (C) 2009 by Lyo Kato
54              
55             This library is free software; you can redistribute it and/or modify
56             it under the same terms as Perl itself, either Perl version 5.8.8 or,
57             at your option, any later version of Perl 5 you may have available.
58              
59             =cut
60