File Coverage

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 4     4   315560 use v5.20.0;
  4         19  
2              
3             package JMAP::Tester::Result::Logout 0.109;
4             # ABSTRACT: a successful logout
5              
6 4     4   496 use Moo;
  4         6899  
  4         26  
7             with 'JMAP::Tester::Role::HTTPResult';
8              
9 4     4   2643 use namespace::clean;
  4         13282  
  4         23  
10              
11             #pod =head1 OVERVIEW
12             #pod
13             #pod It's got an C method. It returns true. Yup.
14             #pod
15             #pod =cut
16              
17 0     0 0   sub is_success { 1 }
18              
19             1;
20              
21             __END__