File Coverage

blib/lib/WebService/GData/YouTube/YT/Media/Content.pm
Criterion Covered Total %
statement 10 11 90.9
branch n/a
condition n/a
subroutine 3 4 75.0
pod 2 2 100.0
total 15 17 88.2


line stmt bran cond sub pod time code
1             package WebService::GData::YouTube::YT::Media::Content;
2 5     5   31 use base 'WebService::GData::Node::Media::Content';
  5         11  
  5         643  
3 5     5   28 use WebService::GData::YouTube::YT();
  5         11  
  5         812  
4              
5              
6             sub attributes {
7 3     3 1 4 my @array = @{WebService::GData::Node::Media::Content->attributes};
  3         16  
8 3         9 push @array, 'yt:format';
9 3         13 return \@array;
10             }
11              
12             sub extra_namespaces {
13 0     0 1   return {WebService::GData::YouTube::YT->root_name=>WebService::GData::YouTube::YT->namespace_uri};
14             }
15              
16              
17              
18             1;