File Coverage

blib/lib/Test/Run/Obj.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Test::Run::Obj;
2              
3 13     13   176047 use strict;
  13         57  
  13         369  
4 13     13   59 use warnings;
  13         21  
  13         370  
5              
6 13     13   242 use 5.008;
  13         41  
7              
8 13     13   74 use vars qw(@ISA $VERSION);
  13         23  
  13         822  
9              
10 13     13   6016 use Test::Run::Core;
  13         42  
  13         172  
11 13     13   8338 use Test::Run::Plugin::CmdLine::Output;
  13         48  
  13         151  
12              
13             =head1 NAME
14              
15             Test::Run::Obj - Run Perl standard test scripts with statistics
16              
17             =head1 VERSION
18              
19             Version 0.0305
20              
21             =cut
22              
23             $VERSION = '0.0305';
24              
25             @ISA = (qw(
26             Test::Run::Plugin::CmdLine::Output
27             Test::Run::Core
28             ));
29              
30             1;
31              
32             =head1 LICENSE
33              
34             This file is licensed under the MIT X11 License:
35              
36             http://www.opensource.org/licenses/mit-license.php
37              
38             =cut
39