File Coverage

blib/lib/RPerl/DataType/Unknown.pm
Criterion Covered Total %
statement 24 24 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 32 32 100.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2             package RPerl::DataType::Unknown;
3 9     9   58 use strict;
  9         19  
  9         226  
4 9     9   44 use warnings;
  9         16  
  9         197  
5 9     9   43 use RPerl::AfterSubclass;
  9         24  
  9         1239  
6             our $VERSION = 0.002_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 9     9   61 use parent qw(RPerl::DataType);
  9         20  
  9         48  
10 9     9   482 use RPerl::DataType;
  9         23  
  9         299  
11              
12             # [[[ CRITICS ]]]
13             ## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
14             ## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils
15             ## no critic qw(Capitalization ProhibitMultiplePackages ProhibitReusedNames) # SYSTEM DEFAULT 3: allow multiple & lower case package names
16              
17             # [[[ SUB-TYPES ]]]
18             # unknown means it could be any data type or data structure
19             package # hide from PAUSE indexing
20             unknown;
21 9     9   45 use strict;
  9         18  
  9         198  
22 9     9   46 use warnings;
  9         20  
  9         253  
23 9     9   48 use parent qw(RPerl::DataType::Unknown);
  9         20  
  9         38  
24              
25             1; # end of class