File Coverage

blib/lib/Net/StackExchange2/V2/Filters.pm
Criterion Covered Total %
statement 15 21 71.4
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 28 71.4


line stmt bran cond sub pod time code
1             package Net::StackExchange2::V2::Filters;
2              
3 1     1   21 use 5.006;
  1         4  
  1         43  
4 1     1   7 use strict;
  1         2  
  1         36  
5 1     1   6 use warnings FATAL => 'all';
  1         2  
  1         56  
6 1     1   6 use Sub::Name qw(subname);
  1         2  
  1         61  
7 1     1   16 use Net::StackExchange2::V2::Common qw(query no_params one_param);
  1         2  
  1         186  
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           *filters_create = subname(
17             "Net::StackExchange2::V2::Filters::filters_create",
18             no_params("filters/create", {no_site => 1}),
19             );
20 0           *filters = subname(
21             "Net::StackExchange2::V2::Filters::filters",
22             one_param("filters", "", {no_site => 1}),
23             );
24            
25 0           return $self;
26             }
27             1; #END of Net::StackExchange2::V2::Filters
28             __END__