File Coverage

blib/lib/Acme/MorningMusume/KameiEri.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Acme::MorningMusume::KameiEri;
2              
3 2     2   9 use strict;
  2         4  
  2         47  
4 2     2   11 use warnings;
  2         3  
  2         51  
5              
6 2     2   10 use base qw(Acme::MorningMusume::Base);
  2         4  
  2         296  
7              
8             our $VERSION = '0.19';
9              
10             sub info {
11             return (
12 2     2 0 17 first_name_ja => '絵里',
13             family_name_ja => '亀井',
14             first_name_en => 'Eri',
15             family_name_en => 'Kamei',
16             nick => [qw(えりりん)],
17             birthday => $_[0]->_datetime_from_date('1988-12-23'),
18             blood_type => 'AB',
19             hometown => '東京都',
20             emoticon => ['ノノ*^ー^)'],
21             class => 6,
22             graduate_date => $_[0]->_datetime_from_date('2010-12-15'),
23             );
24             }
25              
26             1;