File Coverage

blib/lib/Net/StackExchange2/V2/Privileges.pm
Criterion Covered Total %
statement 15 20 75.0
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 27 74.0


line stmt bran cond sub pod time code
1             package Net::StackExchange2::V2::Privileges;
2              
3 1     1   21 use 5.006;
  1         3  
  1         47  
4 1     1   7 use strict;
  1         3  
  1         39  
5 1     1   8 use warnings FATAL => 'all';
  1         3  
  1         50  
6 1     1   8 use Sub::Name qw(subname);
  1         3  
  1         62  
7 1     1   6 use Net::StackExchange2::V2::Common qw(query no_params one_param);
  1         2  
  1         626  
8              
9             our $VERSION = "0.05";
10              
11             sub new {
12 0     0 0   my ($class, $params) = @_;
13 0           my $self = $params;
14 0           bless $self, $class;
15              
16 0           *privileges = subname(
17             "Net::StackExchange2::V2::Privileges::privileges",
18             no_params("privileges"),
19             );
20            
21 0           return $self;
22             }
23             1; #END of Net::StackExchange2::V2::Privileges
24             __END__