File Coverage

blib/lib/Acme/Nogizaka46/IkomaRina.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::IkomaRina;
2              
3 3     3   10 use strict;
  3         3  
  3         65  
4 3     3   9 use warnings;
  3         3  
  3         70  
5              
6 3     3   7 use base qw(Acme::Nogizaka46::Base);
  3         3  
  3         337  
7              
8             our $VERSION = 0.2;
9              
10             sub info {
11             return (
12 3     3 0 16 first_name_ja => '里奈',
13             family_name_ja => '生駒',
14             first_name_en => 'Rina',
15             family_name_en => 'Ikoma',
16             nick => [qw(いこま いこまちゃん)],
17             birthday => $_[0]->_datetime_from_date('1995-12-29'),
18             blood_type => 'AB',
19             hometown => '秋田',
20             class => 1,
21             center => [qw(1st 2nd 3rd 4th 5th 12th)],
22             graduate_date => undef,
23             );
24             }
25              
26             1;