File Coverage

blib/lib/Moops/TraitFor/Keyword/dirty.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 2     2   1119 use v5.14;
  2         7  
2 2     2   13 use strict;
  2         5  
  2         58  
3 2     2   10 use warnings FATAL => 'all';
  2         5  
  2         95  
4 2     2   10 no warnings qw(void once uninitialized numeric);
  2         5  
  2         181  
5              
6             package Moops::TraitFor::Keyword::dirty;
7              
8             our $AUTHORITY = 'cpan:TOBYINK';
9             our $VERSION = '0.037';
10              
11 2     2   14 use Moo::Role;
  2         4  
  2         14  
12              
13             around generate_package_setup => sub {
14             my $next = shift;
15             my $self = shift;
16             grep !/^use namespace::autoclean/, $self->$next(@_);
17             };
18              
19             1;