File Coverage

lib/Rex/Test/Base/has_content.pm
Criterion Covered Total %
statement 11 21 52.3
branch 0 2 0.0
condition 0 3 0.0
subroutine 4 6 66.6
pod 1 2 50.0
total 16 34 47.0


line stmt bran cond sub pod time code
1             #
2             # (c) Jan Gehring
3             #
4              
5             package Rex::Test::Base::has_content;
6              
7 1     1   14 use v5.12.5;
  1         3  
8 1     1   4 use warnings;
  1         3  
  1         57  
9              
10             our $VERSION = '1.14.3'; # VERSION
11              
12 1     1   8 use Rex -base;
  1         2  
  1         9  
13 1     1   8 use base qw(Rex::Test::Base);
  1         3  
  1         291  
14              
15             sub new {
16 0     0 1   my $that = shift;
17 0   0       my $proto = ref($that) || $that;
18 0           my $self = {@_};
19              
20 0           bless( $self, $proto );
21              
22 0           my ( $pkg, $file ) = caller(0);
23              
24 0           return $self;
25             }
26              
27             sub run_test {
28 0     0 0   my ( $self, $file, $test ) = @_;
29              
30 0 0         return $self->ok( 0, "has_content: $file not found" ) unless is_file($file);
31              
32 0           my $content = cat $file;
33 0           $self->ok( ( $content =~ $test ) >= 1, "Content of $file contain $test." );
34             }
35              
36             1;