File Coverage

blib/lib/Acme/MomoiroClover/Members/HayamiAkari.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::MomoiroClover::Members::HayamiAkari;
2              
3 2     2   12 use strict;
  2         4  
  2         73  
4 2     2   13 use warnings;
  2         4  
  2         59  
5              
6 2     2   11 use base qw(Acme::MomoiroClover::Members::Base);
  2         5  
  2         359  
7              
8             sub info {
9             return (
10 3     3 0 22 family_name_ja => '早見',
11             first_name_ja => 'あかり',
12             family_name_en => 'Hayami',
13             first_name_en => 'Akari',
14             nick => [qw(あかりん)],
15             birthday => Date::Simple->new('1995-03-17'),
16             blood_type => 'A',
17             hometown => '東京都',
18             emoticon => [],
19             graduate_date => Date::Simple->new('2011-04-10'),
20             join_date => Date::Simple->new('2008-11-23'),
21             color => 'blue',
22             );
23             }
24              
25             1;