File Coverage

blib/lib/Acme/2zicon/MatobaKarin.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::MatobaKarin;
2              
3 2     2   8 use strict;
  2         1  
  2         51  
4 2     2   7 use warnings;
  2         1  
  2         55  
5              
6 2     2   6 use base qw(Acme::2zicon::Base);
  2         2  
  2         662  
7              
8             our $VERSION = '0.7';
9              
10             sub info {
11 2     2 0 2 my $self = shift;
12             return (
13 2         11 first_name_ja => '華鈴',
14             family_name_ja => '的場',
15             first_name_en => 'Karin',
16             family_name_en => 'Matoba',
17             nick => [qw(かりん かりんさま)],
18             birthday => $self->_datetime_from_date('2000.12.30'),
19             blood_type => 'A',
20             hometown => '埼玉県',
21             introduction => "[hometown]からやってきた最年少の[age]歳。かりんさまってよんでもいいよ。\n\かりんさまー!/\nダンスと梅干しが大好きな[name_ja]です。",
22             twitter => 'matoba_karin',
23             );
24             }
25              
26             1;