File Coverage

blib/lib/Task/MojoLearningEnvironment.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Task::MojoLearningEnvironment;
2 2     2   7209 use strict;
  2         5  
  2         58  
3              
4 2     2   9 use warnings;
  2         4  
  2         47  
5 2     2   10 no warnings;
  2         4  
  2         74  
6              
7 2     2   1070 use subs qw();
  2         49  
  2         54  
8 2     2   11 use vars qw($VERSION);
  2         4  
  2         137  
9              
10             $VERSION = '20180917.001';
11              
12             =encoding utf8
13              
14             =head1 NAME
15              
16             Task::MojoLearningEnvironment - Everything you need to play with Mojolicious, and more
17              
18             =head1 SYNOPSIS
19              
20             % cpan Task::MojoLearningEnvironment
21              
22             % cpanm Task::MojoLearningEnvironment
23              
24             =head1 DESCRIPTION
25              
26             This module exists to specify the dependencies I want to use for
27             my Mojolicious classes. If you think I should add something else,
28             send a pull request.
29              
30             =head1 SOURCE AVAILABILITY
31              
32             This source is in a Git repository:
33              
34             https://github.com/briandfoy/Task-MojoLearningEnvironment
35              
36             =head1 AUTHOR
37              
38             brian d foy, C<< >>
39              
40             =head1 COPYRIGHT AND LICENSE
41              
42             Copyright © 2015-2018, brian d foy . All rights reserved.
43              
44             You may redistribute this under the terms of the Artistic License 2.0.
45              
46             =cut
47              
48             1;