File Coverage

blib/lib/Acme/MomoiroClover/Members/SasakiAyaka.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::SasakiAyaka;
2              
3 2     2   9 use strict;
  2         3  
  2         61  
4 2     2   9 use warnings;
  2         4  
  2         49  
5              
6 2     2   9 use base qw(Acme::MomoiroClover::Members::Base);
  2         3  
  2         301  
7              
8             sub info {
9             return (
10 3     3 0 19 family_name_ja => '佐々木',
11             first_name_ja => '彩夏',
12             family_name_en => 'Sasaki',
13             first_name_en => 'Ayaka',
14             nick => [qw(あーりん)],
15             birthday => Date::Simple->new('1996-06-11'),
16             blood_type => 'AB',
17             hometown => '東京都',
18             emoticon => [],
19             graduate_date => undef,
20             join_date => Date::Simple->new('2008-11-23'),
21             color => 'pink',
22             );
23             }
24              
25             1;