File Coverage

blib/lib/JMAP/Tester/Result/Logout.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 15 18 83.3


line stmt bran cond sub pod time code
1 1     1   15 use v5.10.0;
  1         4  
2 1     1   5 use strict;
  1         2  
  1         37  
3              
4             package JMAP::Tester::Result::Logout 0.101;
5             # ABSTRACT: a successful logout
6              
7 1     1   5 use Moo;
  1         2  
  1         6  
8             with 'JMAP::Tester::Role::HTTPResult';
9              
10 1     1   359 use namespace::clean;
  1         2  
  1         8  
11              
12             #pod =head1 OVERVIEW
13             #pod
14             #pod It's got an C method. It returns true. Yup.
15             #pod
16             #pod =cut
17              
18 0     0 0   sub is_success { 1 }
19              
20             1;
21              
22             __END__