File Coverage

blib/lib/Acme/MorningMusume/MakinoMaria.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::MorningMusume::MakinoMaria;
2              
3 2     2   10 use strict;
  2         3  
  2         50  
4 2     2   10 use warnings;
  2         3  
  2         53  
5              
6 2     2   10 use base qw(Acme::MorningMusume::Base);
  2         2  
  2         284  
7              
8             our $VERSION = '0.19';
9              
10             sub info {
11             return (
12 2     2 0 16 first_name_ja => '真莉愛',
13             family_name_ja => '牧野',
14             first_name_en => 'Maria',
15             family_name_en => 'Makino',
16             nick => [qw()],
17             birthday => $_[0]->_datetime_from_date('2001-02-02'),
18             blood_type => 'O',
19             hometown => '愛知県',
20             emoticon => [''],
21             class => 12,
22             graduate_date => undef,
23             );
24             }
25              
26             1;