File Coverage

blib/lib/Locale/TextDomain/OO/Plugin/Expand/Maketext/Loc.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Locale::TextDomain::OO::Plugin::Expand::Maketext::Loc; ## no critic (TidyCode)
2            
3 2     2   3540 use strict;
  2         5  
  2         66  
4 2     2   12 use warnings;
  2         6  
  2         51  
5 2     2   12 use Moo::Role;
  2         6  
  2         14  
6            
7             our $VERSION = '1.027';
8            
9             with qw(
10             Locale::TextDomain::OO::Plugin::Expand::Maketext
11             );
12            
13             {
14 2     2   853 no warnings qw(redefine); ## no critic (NoWarnings)
  2         6  
  2         256  
15             *loc = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
16             *loc_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
17             *loc_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext_p;
18             *Nloc = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
19             *Nloc_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
20             *Nloc_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext_p;
21             }
22            
23             1;
24            
25             __END__