File Coverage

blib/lib/Articulate/Service/LoginForm.pm
Criterion Covered Total %
statement 12 15 80.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 21 76.1


line stmt bran cond sub pod time code
1             package Articulate::Service::LoginForm;
2              
3 1     1   926 use strict;
  1         2  
  1         37  
4 1     1   5 use warnings;
  1         2  
  1         25  
5              
6 1     1   5 use Articulate::Syntax;
  1         1  
  1         20  
7              
8 1     1   1481 use Moo;
  1         2  
  1         4  
9             with 'Articulate::Role::Service';
10              
11             sub handle_login_form {
12 0     0 0   my $self = shift;
13 0           my $request = shift;
14 0           return new_response 'form/login', { form => {}, };
15             }
16              
17             1;