File Coverage

blib/lib/Locale/TextDomain/OO/Plugin/Expand/Maketext/Localise.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::Localise; ## no critic (TidyCode)
2            
3 1     1   3059 use strict;
  1         2  
  1         32  
4 1     1   6 use warnings;
  1         3  
  1         25  
5 1     1   6 use Moo::Role;
  1         3  
  1         6  
6            
7             our $VERSION = '1.027';
8            
9             with qw(
10             Locale::TextDomain::OO::Plugin::Expand::Maketext
11             );
12            
13             {
14 1     1   448 no warnings qw(redefine); ## no critic (NoWarnings)
  1         2  
  1         127  
15             *localise = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
16             *localise_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext;
17             *localise_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::maketext_p;
18             *Nlocalise = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
19             *Nlocalise_m = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext;
20             *Nlocalise_mp = \&Locale::TextDomain::OO::Plugin::Expand::Maketext::Nmaketext_p;
21             }
22            
23             1;
24            
25             __END__