File Coverage

blib/lib/Acme/HidamariSketch/Matsuri.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::Matsuri;
2              
3 4     4   23 use strict;
  4         8  
  4         127  
4 4     4   19 use warnings;
  4         7  
  4         87  
5 4     4   19 use utf8;
  4         6  
  4         27  
6              
7 4     4   150 use base qw/Acme::HidamariSketch::Base/;
  4         6  
  4         629  
8              
9             our $VERSION = '0.05';
10              
11              
12             sub info {
13             return (
14 4     4 0 45 name_ja => '茉里',
15             name_en => 'matsuri',
16             nickname => undef,
17             birthday => undef,
18             voice_by => undef,
19             room_number => {before => undef, first => undef, second => undef, third => 101},
20             sign => undef,
21             color => undef,
22             course => '美術科',
23             );
24             }
25              
26             1;