File Coverage

blib/lib/JMAP/Tester/Result/Auth.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 15 18 83.3


line stmt bran cond sub pod time code
1 1     1   10 use v5.10.0;
  1         3  
2 1     1   5 use strict;
  1         1  
  1         42  
3              
4             package JMAP::Tester::Result::Auth 0.102;
5             # ABSTRACT: what you get when you authenticate
6              
7 1     1   5 use Moo;
  1         2  
  1         4  
8             with 'JMAP::Tester::Role::HTTPResult';
9              
10 1     1   276 use namespace::clean;
  1         13  
  1         6  
11              
12             #pod =head1 OVERVIEW
13             #pod
14             #pod This is what you get when you authenticate! It's got an C method.
15             #pod It returns true. It also has:
16             #pod
17             #pod =method client_session
18             #pod
19             #pod The client session struct
20             #pod
21             #pod =cut
22              
23 0     0 0   sub is_success { 1 }
24              
25             has client_session => (
26             is => 'ro',
27             );
28              
29             1;
30              
31             __END__