File Coverage

blib/lib/CLI/Osprey/Descriptive.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 19 19 100.0


line stmt bran cond sub pod time code
1             package CLI::Osprey::Descriptive;
2              
3 4     4   31 use strict;
  4         10  
  4         123  
4 4     4   20 use warnings;
  4         10  
  4         232  
5              
6             # ABSTRACT: Getopt::Long::Descriptive subclass for CLI::Osprey use
7             our $VERSION = '0.08'; # VERSION
8             our $AUTHORITY = 'cpan:ARODLAND'; # AUTHORITY
9              
10 4     4   2319 use Getopt::Long::Descriptive 0.100;
  4         157494  
  4         28  
11 4     4   3372 use CLI::Osprey::Descriptive::Usage;
  4         13  
  4         304  
12              
13             our @ISA = ('Getopt::Long::Descriptive');
14              
15 16     16 1 4087 sub usage_class { 'CLI::Osprey::Descriptive::Usage' }
16              
17             1;
18              
19             __END__