File Coverage

blib/lib/Monitoring/Generator/TestConfig/HostCheckData.pm
Criterion Covered Total %
statement 12 12 100.0
branch 1 2 50.0
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 17 18 94.4


line stmt bran cond sub pod time code
1             package Monitoring::Generator::TestConfig::HostCheckData;
2              
3 3     3   10 use strict;
  3         3  
  3         65  
4 3     3   8 use warnings;
  3         3  
  3         212  
5              
6             ########################################
7              
8             =over 4
9              
10             =item get_test_hostcheck
11              
12             returns the test hostcheck plugin source
13              
14             =back
15              
16             =cut
17              
18             sub get_test_hostcheck {
19 1     1 1 1 my $self = shift;
20 1         1 our $testhostcheck;
21 1 50       3 return($testhostcheck) if defined $testhostcheck;
22 1         4 while(my $line = ) { $testhostcheck .= $line; }
  237         320  
23 1         11 return($testhostcheck);
24             }
25              
26             1;
27              
28             __DATA__