File Coverage

blib/lib/Acme/Nogizaka46/IchikiRena.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::Nogizaka46::IchikiRena;
2              
3 3     3   11 use strict;
  3         3  
  3         66  
4 3     3   8 use warnings;
  3         3  
  3         56  
5              
6 3     3   8 use base qw(Acme::Nogizaka46::Base);
  3         3  
  3         329  
7              
8             our $VERSION = 0.2;
9              
10             sub info {
11             return (
12 3     3 0 15 first_name_ja => '玲奈',
13             family_name_ja => '市来',
14             first_name_en => 'Rena',
15             family_name_en => 'Ichiki',
16             nick => [qw(れなりん)],
17             birthday => $_[0]->_datetime_from_date('1996-01-22'),
18             blood_type => 'A',
19             hometown => '千葉',
20             class => 1,
21             center => undef,
22             graduate_date => $_[0]->_datetime_from_date('2014-07-21'),
23             );
24             }
25              
26             1;