File Coverage

blib/lib/RPerl/Test/Include/Class_01_Good.pm
Criterion Covered Total %
statement 72 75 96.0
branch n/a
condition n/a
subroutine 24 25 96.0
pod n/a
total 96 100 96.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2 1     1   9 use RPerl;
  1         4  
  1         12  
3             package RPerl::Test::Include::Class_01_Good;
4             use strict;
5 1     1   68 use warnings;
  1         5  
  1         27  
6 1     1   7 our $VERSION = 0.001_000;
  1         5  
  1         183  
7              
8 1     1   9 # [[[ OO INHERITANCE ]]]
  1         4  
  1         125  
9             use parent qw(RPerl::Test);
10             use RPerl::Test;
11              
12             # [[[ INCLUDES ]]]
13 1     1   7 use RPerl::Test::Foo qw(quux quince qorge);
  1         5  
  1         37  
14 1     1   7 use RPerl::Test::Bar;
  1         4  
  1         11  
15              
16             # [[[ OO PROPERTIES ]]]
17 1     1   87 our hashref $properties
  1         3  
  1         13  
18 1     1   9 = { empty_property => my integer $TYPED_empty_property = 2 };
  1         6  
  1         6  
19              
20             # [[[ SUBROUTINES & OO METHODS ]]]
21 1     1   74 sub empty_method { { my integer::method $RETURN_TYPE }; return RPerl::Test::Foo::quince(); }
  1         4  
  1         27  
22 1     1   7  
  1         2  
  1         7  
23             1; # end of class