File Coverage

blib/lib/File/TVShow/Networks.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package File::TVShow::Networks;
2              
3 14     14   144 use 5.10.0;
  14         38  
4 14     14   59 use strict;
  14         22  
  14         239  
5 14     14   61 use warnings;
  14         22  
  14         1391  
6              
7             require Exporter;
8             our @ISA = qw ( Exporter );
9             our @EXPORT = qw ( @networks );
10              
11             =head1 NAME
12              
13             File::TVShow::Networks - Array of Networks.
14              
15             =head1 VERSION
16              
17             Version 0.02
18              
19             =cut
20              
21             our $VERSION = '0.02';
22              
23             our @networks = qw ( ABC AMZN BBC CBS CC CW DCU DSNY FBWatch FREE FOX HULU iP LIFE MTV NBC NICK FC RED TF1 STZ );
24              
25             1;