File Coverage

blib/lib/HTTP/Headers/ActionPack/WWWAuthenticate.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package HTTP::Headers::ActionPack::WWWAuthenticate;
2             BEGIN {
3 2     2   31742 $HTTP::Headers::ActionPack::WWWAuthenticate::AUTHORITY = 'cpan:STEVAN';
4             }
5             {
6             $HTTP::Headers::ActionPack::WWWAuthenticate::VERSION = '0.09';
7             }
8             # ABSTRACT: The WWW-Authenticate Header
9              
10 2     2   16 use strict;
  2         3  
  2         57  
11 2     2   10 use warnings;
  2         5  
  2         77  
12              
13 2     2   930 use parent 'HTTP::Headers::ActionPack::Core::BaseAuthHeader';
  2         300  
  2         13  
14              
15 4     4 1 17 sub realm { (shift)->params->{'realm'} }
16              
17             1;
18              
19             __END__