File Coverage

blib/lib/Net/StackExchange2/V2/Info.pm
Criterion Covered Total %
statement 18 25 72.0
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 1 0.0
total 24 33 72.7


line stmt bran cond sub pod time code
1             package Net::StackExchange2::V2::Info;
2              
3 1     1   26 use 5.006;
  1         4  
  1         171  
4 1     1   8 use strict;
  1         1  
  1         44  
5 1     1   72 use warnings FATAL => 'all';
  1         3  
  1         55  
6 1     1   162 use Sub::Name qw(subname);
  1         17  
  1         61  
7 1     1   6 use Data::Dumper;
  1         1  
  1         313  
8 1     1   23 use Net::StackExchange2::V2::Common qw(query no_params one_param);
  1         3  
  1         283  
9              
10             our $VERSION = "0.05";
11              
12             sub new {
13 0     0 0   print "egg2";
14 0           print Dumper(@_);
15            
16 0           my ($class, $params) = @_;
17 0           my $self = $params;
18             #print "class, oparams\n";
19             #print Dumper($class, $params);
20 0           bless $self, $class;
21              
22 0           *info = subname(
23             "Net::StackExchange2::V2::Info::info",
24             no_params("info"),
25             );
26 0           return $self;
27             }
28             1; #END of Net::StackExchange2::V2::Info
29             __END__