File Coverage

blib/lib/TV/ARIB/ProgramGenre/ChildGenre/Music.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 TV::ARIB::ProgramGenre::ChildGenre::Music;
2 2     2   1488 use strict;
  2         3  
  2         70  
3 2     2   11 use warnings;
  2         3  
  2         47  
4 2     2   11 use utf8;
  2         4  
  2         10  
5 2     2   67 use parent qw/TV::ARIB::ProgramGenre::ChildGenre/;
  2         4  
  2         11  
6              
7             sub CHILD_GENRES {
8             return [
9 11     11 0 69 '国内ロック・ポップス', # 0x0
10             '海外ロック・ポップス', # 0x1
11             'クラシック・オペラ', # 0x2
12             'ジャズ・フュージョン', # 0x3
13             '歌謡曲・演歌', # 0x4
14             'ライブ・コンサート', # 0x5
15             'ランキング・リクエスト', # 0x6
16             'カラオケ・のど自慢', # 0x7
17             '民謡・邦楽', # 0x8
18             '童謡・キッズ', # 0x9
19             '民族音楽・ワールドミュージック', # 0xA
20             '', # 0xB
21             '', # 0xC
22             '', # 0xD
23             '', # 0xE
24             'その他', # 0xF
25             ];
26             }
27              
28             1;
29