File Coverage

blib/lib/Locale/TextDomain/OO/Plugin/Expand/Maketext/Localize.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::Localize; ## no critic (TidyCode)
2            
3 2     2   3029 use strict;
  2         4  
  2         55  
4 2     2   10 use warnings;
  2         3  
  2         46  
5 2     2   9 use Moo::Role;
  2         2  
  2         13  
6            
7             our $VERSION = '1.027';
8            
9             with qw(
10             Locale::TextDomain::OO::Plugin::Expand::Maketext
11             );
12            
13             {
14 2     2   706 no warnings qw(redefine); ## no critic (NoWarnings)
  2         5  
  2         232  
15             *localize = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
16             *localize_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
17             *localize_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext_p;
18             *Nlocalize = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
19             *Nlocalize_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
20             *Nlocalize_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext_p;
21             }
22            
23             1;
24            
25             __END__