Reading database from /home/jkeenan/learn/perl/devel-cover/Devel--Cover-issue-129/cover_db


----------------------------------- ------ ------ ------ ------ ------ ------
File                                  stmt   bran   cond    sub   time  total
----------------------------------- ------ ------ ------ ------ ------ ------
Compare.pm                            92.3    n/a    n/a  100.0    0.3   93.7
compare.t                            100.0    n/a    n/a  100.0   99.6  100.0
Total                                 97.3    n/a    n/a  100.0  100.0   97.8
----------------------------------- ------ ------ ------ ------ ------ ------


Run:          compare.t
Perl version: 5.20.1
OS:           linux
Start:        Sun Jul  5 22:39:20 2015
Finish:       Sun Jul  5 22:39:20 2015

Compare.pm

line  err   stmt   bran   cond    sub   time   code
1                                              package Compare;
2                                              $VERSION = '0.53';
3              1                    1      2   use strict;
               1                           1   
               1                          21   
4                                              local $^W = 1;
5              1                    1      2   use Carp;
               1                           1   
               1                          74   
6                                              
7                                              sub new {
8              1                    1      7       my $class = shift;
9              1                           1       my (@args, $unsorted, $accelerated);
10    ***      0                           0       my ($argument_error_status, $nextarg, @testargs);
11                                             
12             1                           2       @args = qw( alpha beta gamma );
13             1                           2       $unsorted = $accelerated = 1;
14             1                           2       @testargs = (1..3);
15                                             
16             1                           4       return bless {}, $class;
17                                             }
18                                             
19                                             1;
20                                             


Covered Subroutines
-------------------

Subroutine Count Location    
---------- ----- ------------
BEGIN          1 Compare.pm:3
BEGIN          1 Compare.pm:5
new            1 Compare.pm:8


compare.t

line  err   stmt   bran   cond    sub   time   code
1                                              # perl
2              1                    1   1835   use strict;
               1                           2   
               1                          25   
3              1                    1      3   use warnings;
               1                           1   
               1                          14   
4              1                    1      7   use 5.10.1;
               1                           3   
               1                          22   
5              1                    1      2   use Carp;
               1                           1   
               1                          41   
6              1                    1    167   use lib qw( . );
               1                         393   
               1                           4   
7              1                    1    359   use Test::More (tests => 2);
               1                        8379   
               1                           4   
8              1                    1    330   use Compare;
               1                           1   
               1                         609   
9                                              
10             1                       26465   my $obj = Compare->new();
11             1                           4   ok($obj, "Compare->new() returned true value");
12             1                         223   isa_ok($obj, 'Compare');
13                                             


Covered Subroutines
-------------------

Subroutine Count Location   
---------- ----- -----------
BEGIN          1 compare.t:2
BEGIN          1 compare.t:3
BEGIN          1 compare.t:4
BEGIN          1 compare.t:5
BEGIN          1 compare.t:6
BEGIN          1 compare.t:7
BEGIN          1 compare.t:8


