File Coverage

blib/lib/Getopt/Kingpin/Type/Bool.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Getopt::Kingpin::Type::Bool;
2 29     29   625 use 5.008001;
  29         99  
3 29     29   151 use strict;
  29         59  
  29         644  
4 29     29   138 use warnings;
  29         71  
  29         712  
5 29     29   178 use Carp;
  29         49  
  29         6874  
6              
7             our $VERSION = "0.11";
8              
9             sub set_value {
10 175     175 1 314 my $self = shift;
11 175         341 my ($value) = @_;
12              
13 175         513 return $value;
14             }
15              
16             1;
17             __END__