File Coverage

blib/lib/Acme/2zicon/OtsukaMiyu.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             package Acme::2zicon::OtsukaMiyu;
2              
3 2     2   7 use strict;
  2         2  
  2         43  
4 2     2   6 use warnings;
  2         2  
  2         40  
5              
6 2     2   5 use base qw(Acme::2zicon::Base);
  2         2  
  2         220  
7              
8             our $VERSION = '0.7';
9              
10             sub info {
11 2     2 0 2 my $self = shift;
12             return (
13 2         9 first_name_ja => '望由',
14             family_name_ja => '大塚',
15             first_name_en => 'Miyu',
16             family_name_en => 'Otsuka',
17             nick => [qw(ミユミユ)],
18             birthday => $self->_datetime_from_date('2000.12.20'),
19             blood_type => 'O',
20             hometown => 'ドイツ',
21             introduction => "",
22             twitter => 'otsuka_miyu',
23             );
24             }
25              
26             1;