File Coverage

blib/lib/IPC/PrettyPipe/Queue/Element.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::Queue::Element;
2              
3             # ABSTRACT: role for an element in an B
4              
5 18     18   18015 use Moo::Role;
  18         43  
  18         139  
6              
7 18     18   5801 use namespace::clean;
  18         47  
  18         96  
8              
9             our $VERSION = '0.12';
10              
11             has last => (
12             is => 'rwp',
13             default => sub { 0 },
14             init_arg => undef,
15             );
16              
17             has first => (
18             is => 'rwp',
19             default => sub { 0 },
20             init_arg => undef,
21             );
22              
23              
24             1;
25              
26             #
27             # This file is part of IPC-PrettyPipe
28             #
29             # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
30             #
31             # This is free software, licensed under:
32             #
33             # The GNU General Public License, Version 3, June 2007
34             #
35              
36             __END__