blib/lib/TV/ARIB/ProgramGenre/ChildGenre/News.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::News; | ||||||
2 | 2 | 2 | 1293 | use strict; | |||
2 | 4 | ||||||
2 | 66 | ||||||
3 | 2 | 2 | 11 | use warnings; | |||
2 | 3 | ||||||
2 | 49 | ||||||
4 | 2 | 2 | 10 | use utf8; | |||
2 | 3 | ||||||
2 | 13 | ||||||
5 | 2 | 2 | 45 | use parent qw/TV::ARIB::ProgramGenre::ChildGenre/; | |||
2 | 3 | ||||||
2 | 11 | ||||||
6 | |||||||
7 | sub CHILD_GENRES { | ||||||
8 | return [ | ||||||
9 | 16 | 16 | 0 | 103 | '定時・総合', # 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 |