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 7     7   41 use strict;
  7         12  
  7         183  
4 7     7   31 use warnings;
  7         16  
  7         181  
5 7     7   36 use RPerl::AfterSubclass;
  7         9  
  7         1145  
6             our $VERSION = 0.002_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 7     7   41 use parent qw(RPerl::DataType);
  7         13  
  7         36  
10 7     7   412 use RPerl::DataType;
  7         25  
  7         219  
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 7     7   34 use strict;
  7         13  
  7         129  
22 7     7   36 use warnings;
  7         16  
  7         194  
23 7     7   31 use parent qw(RPerl::DataType::Unknown);
  7         11  
  7         22  
24              
25             1; # end of class