File Coverage

blib/lib/Task/MojoLearningEnvironment.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


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