File Coverage

blib/lib/Acme/Nogizaka46/NishinoNanase.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::NishinoNanase;
2              
3 3     3   12 use strict;
  3         3  
  3         66  
4 3     3   9 use warnings;
  3         3  
  3         83  
5              
6 3     3   9 use base qw(Acme::Nogizaka46::Base);
  3         3  
  3         323  
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 => 'Nanase',
15             family_name_en => 'Nishino',
16             nick => [qw(なぁちゃん ななせまる)],
17             birthday => $_[0]->_datetime_from_date('1994-05-25'),
18             blood_type => 'O',
19             hometown => '大阪',
20             class => 1,
21             center => [qw(8th 9th 11th 13th)],
22             graduate_date => undef,
23             );
24             }
25              
26             1;