File Coverage

blib/lib/App/MP4Meta/Source/Data/TVEpisode.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 1     1   144020 use 5.010;
  1         4  
  1         40  
2 1     1   6 use strict;
  1         3  
  1         28  
3 1     1   5 use warnings;
  1         1  
  1         61  
4              
5             package App::MP4Meta::Source::Data::TVEpisode;
6             {
7             $App::MP4Meta::Source::Data::TVEpisode::VERSION = '1.130420';
8             }
9              
10             # ABSTRACT: Contains data for a TV Episode.
11              
12 1     1   519 use App::MP4Meta::Source::Data::Base;
  1         4  
  1         10  
13             our @ISA = 'App::MP4Meta::Source::Data::Base';
14              
15 1         5 use Object::Tiny qw(
16             show_title
17 1     1   61 );
  1         2  
18              
19             1;
20              
21              
22              
23             =pod
24              
25             =head1 NAME
26              
27             App::MP4Meta::Source::Data::TVEpisode - Contains data for a TV Episode.
28              
29             =head1 VERSION
30              
31             version 1.130420
32              
33             =head1 SYNOPSIS
34              
35             my $episode = App::MP4Meta::Source::Data::TVEpisode->new(%data);
36              
37             =head1 ATTRIBUTES
38              
39             =head2 show_title
40              
41             Title of the show.
42              
43             =head1 AUTHOR
44              
45             Andrew Jones
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2013 by Andrew Jones.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut
55              
56              
57             __END__