File Coverage

blib/lib/Net/Download/Queue/DownloadStatus.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             =head1 NAME
2            
3             Net::Download::Queue::DownloadStatus
4            
5             =head1 SYNOPSIS
6            
7            
8             =cut
9            
10            
11            
12            
13            
14             package Net::Download::Queue::DownloadStatus;
15 1     1   906 use base 'Net::Download::Queue::DBI';
  1         2  
  1         102  
16            
17            
18            
19             our $VERSION = Net::Download::Queue::DBI::VERSION;
20            
21            
22            
23 1     1   5 use strict;
  1         2  
  1         29  
24 1     1   4 use Data::Dumper;
  1         3  
  1         66  
25            
26            
27            
28            
29            
30             __PACKAGE__->set_up_table('download_status');
31            
32            
33            
34            
35            
36             1;
37            
38            
39            
40            
41            
42             __END__