File Coverage

blib/lib/Acme/HidamariSketch/Riri.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::Riri;
2              
3 4     4   23 use strict;
  4         5  
  4         137  
4 4     4   19 use warnings;
  4         6  
  4         88  
5 4     4   54 use utf8;
  4         8  
  4         19  
6              
7 4     4   112 use base qw/Acme::HidamariSketch::Base/;
  4         8  
  4         920  
8              
9             our $VERSION = '0.05';
10              
11              
12             sub info {
13             return (
14 4     4 0 41 name_ja => 'リリ',
15             name_en => 'riri',
16             nickname => undef,
17             birthday => undef,
18             voice_by => '白石 涼子',
19             room_number => {before => 101, first => undef, second => undef, third => undef},
20             sign => undef,
21             color => undef,
22             course => '美術科',
23             );
24             }
25              
26             1;