File Coverage

blib/lib/Acme/HidamariSketch/Misato.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Acme::HidamariSketch::Misato;
2              
3 4     4   20 use strict;
  4         9  
  4         133  
4 4     4   19 use warnings;
  4         8  
  4         95  
5 4     4   19 use utf8;
  4         6  
  4         20  
6              
7 4     4   134 use base qw/Acme::HidamariSketch::Base/;
  4         7  
  4         885  
8              
9             our $VERSION = '0.05';
10              
11              
12             sub info {
13             return (
14 4     4 0 50 name_ja => 'みさと',
15             name_en => 'misato',
16             nickname => undef,
17             birthday => undef,
18             voice_by => '小清水 亜美',
19             room_number => {before => 201, first => undef, second => undef, third => undef},
20             sign => undef,
21             color => undef,
22             course => '美術科',
23             );
24             }
25              
26             1;