blib/lib/TV/ARIB/ProgramGenre/ChildGenre/Documentary.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::Documentary; | ||||||
2 | 2 | 2 | 1864 | use strict; | |||
2 | 4 | ||||||
2 | 70 | ||||||
3 | 2 | 2 | 11 | use warnings; | |||
2 | 5 | ||||||
2 | 83 | ||||||
4 | 2 | 2 | 10 | use utf8; | |||
2 | 2 | ||||||
2 | 11 | ||||||
5 | 2 | 2 | 57 | use parent qw/TV::ARIB::ProgramGenre::ChildGenre/; | |||
2 | 2 | ||||||
2 | 10 | ||||||
6 | |||||||
7 | sub CHILD_GENRES { | ||||||
8 | return [ | ||||||
9 | 7 | 7 | 0 | 44 | '社会・時事', # 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 |