File Coverage

blib/lib/Mojolicious/Command/deploy.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 Mojolicious::Command::deploy;
2 1     1   36478 use Mojo::Base 'Mojolicious::Commands';
  1         2  
  1         6  
3              
4             our $VERSION = '0.02';
5              
6             has description => "Deploy Mojolicious apps to the cloud.\n";
7             has hint => <<"EOF";
8              
9             See '$0 deploy help DEPLOYMENT' for more information on a specific deployment.
10             EOF
11             has message => <<"EOF";
12             usage: $0 deploy DEPLOYMENT [OPTIONS]
13              
14             These deployments are currently available:
15             EOF
16             has namespaces =>
17             sub { [qw/Mojolicious::Command::deploy Mojo::Command::deploy/] };
18             has usage => "usage: $0 deploy DEPLOYMENT [OPTIONS]\n";
19              
20             1;
21              
22             __END__