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 14     14   784756 use strict;
  14         63  
  14         646  
4 14     14   85 use warnings;
  14         24  
  14         937  
5              
6 14     14   296 use 5.008;
  14         48  
7              
8 14     14   79 use vars qw(@ISA $VERSION);
  14         31  
  14         1088  
9              
10 14     14   9908 use Test::Run::Core;
  14         71  
  14         892  
11 14     14   10602 use Test::Run::Plugin::CmdLine::Output;
  14         66  
  14         1341  
12              
13             =head1 NAME
14              
15             Test::Run::Obj - Run Perl standard test scripts with statistics
16              
17             =head1 VERSION
18              
19             Version 0.0306
20              
21             =cut
22              
23             $VERSION = '0.0306';
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