File Coverage

blib/lib/FormValidator/LazyWay/Rule/Email/JA.pm
Criterion Covered Total %
statement 10 11 90.9
branch n/a
condition n/a
subroutine 4 5 80.0
pod 2 2 100.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package FormValidator::LazyWay::Rule::Email::JA;
2              
3 14     14   73 use strict;
  14         27  
  14         462  
4 14     14   73 use warnings;
  14         26  
  14         309  
5 14     14   66 use utf8;
  14         26  
  14         75  
6              
7             sub email {
8 15     15 1 49 'メールアドレスの書式',
9             }
10              
11             sub email_loose {
12 0     0 1   'メールアドレスの書式',
13             }
14              
15             1;
16              
17             =head1 NAME
18              
19             FormValidator::LazyWay::Rule::Email::JA - Messages of Email Rule
20              
21             =head1 METHOD
22              
23             =head2 email
24              
25             =head2 email_loose
26              
27             =cut
28