File Coverage

blib/lib/Moxie/Object/Immutable.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Moxie::Object::Immutable;
2             # ABSTRACT: Yet Another (Immutable) Base Class
3              
4 49     49   572 use v5.22;
  49         166  
5 49     49   269 use warnings;
  49         218  
  49         1719  
6 49         246 use experimental qw[
7             signatures
8             postderef
9 49     49   271 ];
  49         83  
10              
11 49     49   6419 use UNIVERSAL::Object::Immutable;
  49         106  
  49         4548  
12              
13             our $VERSION = '0.06';
14             our $AUTHORITY = 'cpan:STEVAN';
15              
16             our @ISA; BEGIN {
17 49     49   1974 @ISA = (
18             'UNIVERSAL::Object::Immutable',
19             'Moxie::Object',
20             );
21             }
22              
23             1;
24              
25             __END__