File Coverage

blib/lib/JMAP/Tester/Result/Auth.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1 4     4   230461 use v5.20.0;
  4         12  
2              
3             package JMAP::Tester::Result::Auth 0.109;
4             # ABSTRACT: what you get when you authenticate
5              
6 4     4   461 use Moo;
  4         7211  
  4         26  
7             with 'JMAP::Tester::Role::HTTPResult';
8              
9 4     4   2769 use namespace::clean;
  4         23401  
  4         30  
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 1     1 0 639 sub is_success { 1 }
23              
24             has client_session => (
25             is => 'ro',
26             );
27              
28             1;
29              
30             __END__