File Coverage

blib/lib/RPerl/Test.pm
Criterion Covered Total %
statement 15 20 75.0
branch n/a
condition n/a
subroutine 5 6 83.3
pod n/a
total 20 26 76.9


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2             package RPerl::Test;
3 6     6   2396 use strict;
  6         12  
  6         150  
4 6     6   26 use warnings;
  6         11  
  6         126  
5 6     6   26 use RPerl::AfterSubclass;
  6         10  
  6         688  
6             our $VERSION = 0.004_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 6     6   35 use parent qw(RPerl::CompileUnit::Module::Class);
  6         10  
  6         38  
10 6     6   346 use RPerl::CompileUnit::Module::Class;
  6         11  
  6         481  
11              
12             # [[[ CRITICS ]]]
13             ## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
14              
15             # [[[ OO PROPERTIES ]]]
16             our hashref $properties = {};
17              
18             # [[[ SUBROUTINES & OO METHODS ]]]
19              
20             # OO INHERITANCE TESTING
21             sub empty_method {
22 0     0     { my void::method $RETURN_TYPE };
  0            
23 0           ( my object $self ) = @ARG;
24 0           print 'Hello, World!' . "\n";
25 0           return;
26             }
27              
28             1; # end of class