File Coverage

blib/lib/PLS/Server/State.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package PLS::Server::State;
2              
3 13     13   91 use strict;
  13         36  
  13         548  
4 13     13   80 use warnings;
  13         29  
  13         1870  
5              
6             our $INITIALIZED = 0;
7             our $CONFIG = {perltidy => {}, perlcritic => {}};
8             our $SHUTDOWN = 0;
9             our $CLIENT_CAPABILITIES;
10              
11             =head1 NAME
12              
13             PLS::Server::State
14              
15             =head1 DESCRIPTION
16              
17             This module contains package variables containing server state.
18              
19             =cut
20              
21             1;