blib/lib/JMAP/Tester/Result/Logout.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 | 13 | use v5.14.0; | |||
1 | 4 | ||||||
2 | |||||||
3 | package JMAP::Tester::Result::Logout 0.103; | ||||||
4 | # ABSTRACT: a successful logout | ||||||
5 | |||||||
6 | 1 | 1 | 7 | use Moo; | |||
1 | 1 | ||||||
1 | 5 | ||||||
7 | with 'JMAP::Tester::Role::HTTPResult'; | ||||||
8 | |||||||
9 | 1 | 1 | 380 | use namespace::clean; | |||
1 | 2 | ||||||
1 | 7 | ||||||
10 | |||||||
11 | #pod =head1 OVERVIEW | ||||||
12 | #pod | ||||||
13 | #pod It's got an C |
||||||
14 | #pod | ||||||
15 | #pod =cut | ||||||
16 | |||||||
17 | 0 | 0 | 0 | sub is_success { 1 } | |||
18 | |||||||
19 | 1; | ||||||
20 | |||||||
21 | __END__ |