File Coverage

blib/lib/Tie/Scalar/NoOp.pm
Criterion Covered Total %
statement 0 2 0.0
branch n/a
condition n/a
subroutine 0 4 0.0
pod n/a
total 0 6 0.0


line stmt bran cond sub pod time code
1             ## no critic: TestingAndDebugging::RequireUseStrict
2             package Tie::Scalar::NoOp;
3              
4             # IFUNBUILT
5             # use strict;
6             # END IFUNBUILT
7              
8             our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
9             our $DATE = '2023-12-26'; # DATE
10             our $DIST = 'Tie-Scalar-NoOp'; # DIST
11             our $VERSION = '0.001'; # VERSION
12              
13             sub TIESCALAR {
14 0     0     my $class = shift;
15              
16 0           bless [], $class;
17             }
18              
19       0     sub FETCH {}
20              
21       0     sub STORE {}
22              
23       0     sub UNTIE {}
24              
25             # DESTROY
26              
27             1;
28             # ABSTRACT: Tied scalar that does nothing
29              
30             __END__