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 2     2   20 use v5.20.0;
  2         5  
2              
3             package JMAP::Tester::Result::Logout 0.110;
4             # ABSTRACT: a successful logout
5              
6 2     2   7 use Moo;
  2         3  
  2         19  
7             with 'JMAP::Tester::Role::HTTPResult';
8              
9 2     2   558 use namespace::clean;
  2         3  
  2         9  
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__