File Coverage

blib/lib/Slovo/Command/prodan.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Slovo::Command::prodan;
2              
3 1     1   894 use Mojo::Base 'Mojolicious::Commands';
  1         2  
  1         4  
4              
5             has hint => <<"EOF";
6              
7             See '$0 prodan help ACTION' for more information on a specific command.
8             EOF
9             has message => sub { shift->extract_usage . "\nActions:\n" };
10             has namespaces => sub { [__PACKAGE__] };
11             has description => 'Sales related commands for a Slovo-based site.';
12              
13             1;
14              
15             =encoding utf8
16              
17             =head1 NAME
18              
19             Slovo::Command::prodan - A sales command
20              
21             =head1 SYNOPSIS
22              
23             List available subcommands
24             slovo prodan
25              
26             =head1 DESCRIPTION
27              
28             Slovo::Command::prodan is just a namespace for sales management related
29             commands for a site based on L.
30             These commands are still alfa quality and their functionalities may change often.
31              
32             =head1 SEE ALSO
33              
34             L,
35             L,
36             L
37              
38             =cut
39