File Coverage

blib/lib/TV/ARIB/ProgramGenre/ChildGenre/Sport.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::Sport;
2 2     2   977 use strict;
  2         4  
  2         56  
3 2     2   10 use warnings;
  2         3  
  2         47  
4 2     2   8 use utf8;
  2         4  
  2         9  
5 2     2   55 use parent qw/TV::ARIB::ProgramGenre::ChildGenre/;
  2         5  
  2         10  
6              
7             sub CHILD_GENRES {
8             return [
9 14     14 0 97 'スポーツニュース', # 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