File Coverage

blib/lib/Logfile/EPrints.pm
Criterion Covered Total %
statement 51 51 100.0
branch n/a
condition n/a
subroutine 17 17 100.0
pod n/a
total 68 68 100.0


line stmt bran cond sub pod time code
1             package Logfile::EPrints;
2              
3 6     6   195760 use strict;
  6         17  
  6         329  
4 6     6   31 use warnings;
  6         11  
  6         159  
5              
6 6     6   30 use Carp;
  6         16  
  6         655  
7 6     6   7123 use URI;
  6         75931  
  6         448  
8 6     6   9065 use Socket;
  6         41476  
  6         4582  
9              
10 6     6   5358 use Logfile::EPrints::Hit;
  6         25  
  6         219  
11 6     6   3983 use Logfile::EPrints::Hit::Negate;
  6         116  
  6         160  
12              
13 6     6   3040 use Logfile::EPrints::Filter;
  6         14  
  6         156  
14 6     6   3239 use Logfile::EPrints::Institution;
  6         13  
  6         163  
15 6     6   3162 use Logfile::EPrints::Repeated;
  6         20  
  6         190  
16 6     6   3505 use Logfile::EPrints::Parser;
  6         19  
  6         160  
17             # use Logfile::EPrints::Parser::OAI;
18 6     6   3162 use Logfile::EPrints::RobotsTxtFilter;
  6         18  
  6         179  
19 6     6   4028 use Logfile::EPrints::Period;
  6         17  
  6         228  
20 6     6   3966 use Logfile::EPrints::Filter::Session;
  6         199  
  6         196  
21              
22 6     6   4184 use Logfile::EPrints::Mapping::arXiv;
  6         15  
  6         183  
23 6     6   3833 use Logfile::EPrints::Mapping::DSpace;
  6         27  
  6         167  
24 6     6   3411 use Logfile::EPrints::Mapping::EPrints;
  6         51  
  6         368  
25              
26             # Maintain backwards compatibility
27             our @ISA = qw( Logfile::EPrints::Mapping::EPrints );
28              
29             our $VERSION = '1.20';
30              
31             1;
32              
33             __END__