File Coverage

blib/lib/IPC/PrettyPipe/Executor.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package IPC::PrettyPipe::Executor;
2              
3             # ABSTRACT: role for executor backends
4              
5 3     3   1766 use Moo::Role;
  3         8  
  3         32  
6              
7             our $VERSION = '0.13';
8              
9             requires qw[ run ];
10              
11 3     3   1452 use namespace::clean;
  3         10  
  3         24  
12              
13             1;
14              
15             #
16             # This file is part of IPC-PrettyPipe
17             #
18             # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
19             #
20             # This is free software, licensed under:
21             #
22             # The GNU General Public License, Version 3, June 2007
23             #
24              
25             __END__