File Coverage

bin/timestamper-log-process
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             #! /usr/bin/env perl
2             #
3             # Short description for timestamper-log-process
4             #
5             # Copyright (C) 2024 Shlomi Fish < https://www.shlomifish.org/ >
6             #
7             # Licensed under the terms of the MIT license.
8              
9 3     3   15911 use strict;
  3         7  
  3         113  
10 3     3   14 use warnings;
  3         11  
  3         154  
11 3     3   53 use 5.014;
  3         10  
12 3     3   1536 use autodie;
  3         55272  
  3         14  
13              
14 3     3   21602 use Carp qw/ confess /;
  3         20  
  3         219  
15 3     3   1982 use App::Timestamper::Log::Process ();
  3         136  
  3         207  
16              
17 3         1062437 App::Timestamper::Log::Process->new( { argv => [ @ARGV, ] } )->run();
18              
19             __END__