File Coverage

blib/lib/JMAP/Tester/Result/Auth.pm
Criterion Covered Total %
statement 8 9 88.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 11 14 78.5


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