File Coverage

blib/lib/Footprintless/App/Command/overlay/initialize.pm
Criterion Covered Total %
statement 24 24 100.0
branch 1 2 50.0
condition n/a
subroutine 8 8 100.0
pod 3 3 100.0
total 36 37 97.3


line stmt bran cond sub pod time code
1 5     5   2116 use strict;
  5         11  
  5         128  
2 5     5   25 use warnings;
  5         11  
  5         246  
3              
4             package Footprintless::App::Command::overlay::initialize;
5             $Footprintless::App::Command::overlay::initialize::VERSION = '1.26';
6             # ABSTRACT: cleans, then processes the overlay base and template files
7             # PODNAME: Footprintless::App::Command::overlay::initialize
8              
9 5     5   23 use parent qw(Footprintless::App::Action);
  5         8  
  5         20  
10              
11 5     5   263 use Footprintless::App -ignore;
  5         10  
  5         23  
12 5     5   818 use Log::Any;
  5         10  
  5         24  
13              
14             my $logger = Log::Any->get_logger();
15              
16             sub execute {
17 1     1 1 4 my ( $self, $opts, $args ) = @_;
18              
19 1         6 $logger->info('Performing initialize...');
20 1         48 $self->{overlay}->initialize();
21              
22 1         10 $logger->info('Done...');
23             }
24              
25             sub usage_desc {
26 1     1 1 5 return "fpl overlay OVERLAY_COORD initialize %o";
27             }
28              
29             sub validate_args {
30 1     1 1 3 my ( $self, $opts, $args ) = @_;
31              
32 1         3 eval { $self->{overlay} = $self->{footprintless}->overlay( $self->{coordinate} ); };
  1         6  
33              
34 1 50       5 $self->usage_error("invalid coordinate [$self->{coordinate}]: $@") if ($@);
35             }
36              
37             1;
38              
39             __END__