File Coverage

blib/lib/Travel/Status/DE/VRR.pm
Criterion Covered Total %
statement 14 17 82.3
branch n/a
condition n/a
subroutine 5 6 83.3
pod 1 1 100.0
total 20 24 83.3


line stmt bran cond sub pod time code
1             package Travel::Status::DE::VRR;
2              
3 2     2   289202 use strict;
  2         13  
  2         59  
4 2     2   13 use warnings;
  2         2  
  2         51  
5 2     2   102 use 5.010;
  2         9  
6              
7 2     2   1437 no if $] >= 5.018, warnings => "experimental::smartmatch";
  2         27  
  2         13  
8              
9             our $VERSION = '1.21';
10              
11 2     2   232 use parent 'Travel::Status::DE::EFA';
  2         5  
  2         18  
12              
13             sub new {
14 0     0 1   my ( $class, %opt ) = @_;
15              
16 0           $opt{efa_url} = 'http://efa.vrr.de/vrr/XSLT_DM_REQUEST';
17              
18 0           return $class->SUPER::new(%opt);
19             }
20              
21             1;
22              
23             __END__