| blib/lib/Net/NicoVideo/Response/TagRSS.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 15 | 17 | 88.2 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 6 | 83.3 |
| pod | 0 | 1 | 0.0 |
| total | 20 | 24 | 83.3 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package Net::NicoVideo::Response::TagRSS; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 977 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 37 | ||||||
| 4 | 1 | 1 | 5 | use warnings; | |||
| 1 | 2 | ||||||
| 1 | 29 | ||||||
| 5 | 1 | 1 | 4 | use vars qw($VERSION); | |||
| 1 | 2 | ||||||
| 1 | 48 | ||||||
| 6 | $VERSION = '0.28'; | ||||||
| 7 | |||||||
| 8 | 1 | 1 | 6 | use base qw(Net::NicoVideo::Response); | |||
| 1 | 1 | ||||||
| 1 | 76 | ||||||
| 9 | 1 | 1 | 6 | use Net::NicoVideo::Content::TagRSS; | |||
| 1 | 3 | ||||||
| 1 | 77 | ||||||
| 10 | |||||||
| 11 | sub parsed_content { # implement | ||||||
| 12 | 0 | 0 | 0 | my $self = shift; | |||
| 13 | 0 | Net::NicoVideo::Content::TagRSS->new($self->_component)->parse; | |||||
| 14 | } | ||||||
| 15 | |||||||
| 16 | |||||||
| 17 | 1; | ||||||
| 18 | __END__ |