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   2614 use strict;
  5         11  
  5         111  
2 5     5   19 use warnings;
  5         9  
  5         194  
3              
4             package Footprintless::App::Command::overlay::initialize;
5             $Footprintless::App::Command::overlay::initialize::VERSION = '1.28';
6             # ABSTRACT: cleans, then processes the overlay base and template files
7             # PODNAME: Footprintless::App::Command::overlay::initialize
8              
9 5     5   22 use parent qw(Footprintless::App::Action);
  5         8  
  5         45  
10              
11 5     5   282 use Footprintless::App -ignore;
  5         8  
  5         32  
12 5     5   936 use Log::Any;
  5         10  
  5         20  
13              
14             my $logger = Log::Any->get_logger();
15              
16             sub execute {
17 1     1 1 4 my ( $self, $opts, $args ) = @_;
18              
19 1         3 $logger->info('Performing initialize...');
20 1         11 $self->{overlay}->initialize();
21              
22 1         16 $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         2 eval { $self->{overlay} = $self->{footprintless}->overlay( $self->{coordinate} ); };
  1         5  
33              
34 1 50       5 $self->usage_error("invalid coordinate [$self->{coordinate}]: $@") if ($@);
35             }
36              
37             1;
38              
39             __END__