File Coverage

blib/lib/Error/Pure/ErrorList.pm
Criterion Covered Total %
statement 29 31 93.5
branch 3 4 75.0
condition 1 3 33.3
subroutine 9 9 100.0
pod 1 1 100.0
total 43 48 89.5


line stmt bran cond sub pod time code
1             package Error::Pure::ErrorList;
2              
3 3     3   104384 use base qw(Exporter);
  3         29  
  3         427  
4 3     3   20 use strict;
  3         6  
  3         71  
5 3     3   14 use warnings;
  3         5  
  3         98  
6              
7 3     3   1323 use Error::Pure::Utils qw(err_helper);
  3         7  
  3         60  
8 3     3   1823 use Error::Pure::Output::Text qw(err_line_all);
  3         4467  
  3         62  
9 3     3   276 use List::Util qw(none);
  3         7  
  3         349  
10 3     3   19 use Readonly;
  3         8  
  3         797  
11              
12             # Constants.
13             Readonly::Array our @EXPORT_OK => qw(err);
14             Readonly::Scalar my $EVAL => 'eval {...}';
15              
16             our $VERSION = 0.31;
17              
18             # Process error.
19             sub err {
20 5     5 1 2574 my @msg = @_;
21              
22             # Get errors structure.
23 5         17 my @errors = err_helper(@msg);
24              
25             # Finalize in main on last err.
26 5         11 my $stack_ar = $errors[-1]->{'stack'};
27 5 50 33     24 if ($stack_ar->[-1]->{'class'} eq 'main'
28 10 100   10   35 && none { $_ eq $EVAL || $_ =~ /^eval '/ms }
29 10         30 map { $_->{'sub'} } @{$stack_ar}) {
  5         13  
30              
31 0         0 die err_line_all(@errors);
32              
33             # Die for eval.
34             } else {
35 5         27 die "$errors[-1]->{'msg'}->[0]\n";
36             }
37              
38 0           return;
39             }
40              
41             1;
42              
43             __END__