File Coverage

blib/lib/App/Math/Tutor/Cmd/Natural.pm
Criterion Covered Total %
statement 15 16 93.7
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 20 23 86.9


line stmt bran cond sub pod time code
1             package App::Math::Tutor::Cmd::Natural;
2              
3 1     1   11602 use warnings;
  1         3  
  1         35  
4 1     1   4 use strict;
  1         1  
  1         52  
5              
6             =head1 NAME
7              
8             App::Math::Tutor::Cmd::Natural - namespace for exercises for natural numbers
9              
10             =cut
11              
12             our $VERSION = '0.005';
13              
14 1     1   4 use Moo;
  1         2  
  1         7  
15 1     1   274 use MooX::Cmd;
  1         2  
  1         6  
16 1     1   1662 use MooX::Options;
  1         2  
  1         8  
17              
18             sub execute
19             {
20 0     0 0   shift->options_usage();
21             }
22              
23             =head1 LICENSE AND COPYRIGHT
24              
25             Copyright 2010-2014 Jens Rehsack.
26              
27             This program is free software; you can redistribute it and/or modify it
28             under the terms of either: the GNU General Public License as published
29             by the Free Software Foundation; or the Artistic License.
30              
31             See http://dev.perl.org/licenses/ for more information.
32              
33             =cut
34              
35             1;