File Coverage

blib/lib/Unicode/Precis/UsernameCaseMapped.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 15 86.6


line stmt bran cond sub pod time code
1             #-*- perl -*-
2             #-*- coding: utf-8 -*-
3              
4             package Unicode::Precis::UsernameCaseMapped;
5              
6 1     1   771 use strict;
  1         2  
  1         23  
7 1     1   4 use warnings;
  1         1  
  1         22  
8 1     1   4 use base qw(Unicode::Precis);
  1         2  
  1         123  
9              
10             our $VERSION = '1.199_01';
11              
12             sub new {
13 0     0 1   bless shift->SUPER::new(
14             WidthMappingRule => 'Decomposition',
15             CaseMappingRule => 'Lower',
16             NormalizationRule => 'NFC',
17             DirectionalityRule => 'BiDi',
18             StringClass => 'IdentifierClass',
19             );
20             }
21              
22             1;
23             __END__