File Coverage

blib/lib/RPerl/Operation/Expression/Operator/Compare.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # [[[ HEADER ]]]
2             package RPerl::Operation::Expression::Operator::Compare;
3 5     5   1932 use strict;
  5         13  
  5         127  
4 5     5   24 use warnings;
  5         12  
  5         112  
5 5     5   25 use RPerl::AfterSubclass;
  5         13  
  5         643  
6             our $VERSION = 0.001_000;
7              
8             # [[[ OO INHERITANCE ]]]
9 5     5   37 use parent qw(RPerl::Operation::Expression::Operator);
  5         15  
  5         36  
10 5     5   305 use RPerl::Operation::Expression::Operator;
  5         12  
  5         173  
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              
16             # [[[ OO PROPERTIES ]]]
17             our hashref $properties = {};
18              
19             1; # end of class