File Coverage

blib/lib/IPC/PrettyPipe/Renderer.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::Renderer;
2              
3             # ABSTRACT: role for renderer backends
4              
5 12     12   41622 use Moo::Role;
  12         31  
  12         74  
6              
7             our $VERSION = '0.12';
8              
9 12     12   3864 use namespace::clean;
  12         32  
  12         74  
10              
11             requires qw[ render ];
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__