line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
18
|
use v5.10.0; |
|
1
|
|
|
|
|
4
|
|
2
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
45
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package JMAP::Tester::Result::Auth 0.101; |
5
|
|
|
|
|
|
|
# ABSTRACT: what you get when you authenticate |
6
|
|
|
|
|
|
|
|
7
|
1
|
|
|
1
|
|
6
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
8
|
|
|
|
|
|
|
with 'JMAP::Tester::Role::HTTPResult'; |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
436
|
use namespace::clean; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
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__ |