File Coverage

blib/lib/Acme/HidamariSketch/Nori.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::Nori;
2              
3 4     4   21 use strict;
  4         7  
  4         132  
4 4     4   20 use warnings;
  4         7  
  4         94  
5 4     4   21 use utf8;
  4         6  
  4         18  
6              
7 4     4   98 use base qw/Acme::HidamariSketch::Base/;
  4         7  
  4         718  
8              
9             our $VERSION = '0.05';
10              
11              
12             sub info {
13             return (
14 5     5 0 56 name_ja => '乃莉',
15             name_en => 'nori',
16             nickname => qw/のりっぺ ノリスケ ノリコさん/,
17             birthday => '2/6',
18             voice_by => '原田 ひとみ',
19             room_number => {before => undef, first => undef, second => 103, third => 103},
20             sign => '水瓶座',
21             color => '#89CEEB', # ブルー
22             course => '美術科',
23             );
24             }
25              
26             1;