File Coverage

blib/lib/App/GitGot/Command/fetch.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package App::GitGot::Command::fetch;
2             our $AUTHORITY = 'cpan:GENEHACK';
3             $App::GitGot::Command::fetch::VERSION = '1.337';
4             # ABSTRACT: fetch remotes for managed repositories
5 15     15   11413 use 5.014;
  15         66  
6              
7 15     15   102 use App::GitGot -command;
  15         38  
  15         130  
8              
9 15     15   4931 use Moo;
  15         40  
  15         95  
10             extends 'App::GitGot::Command';
11 15     15   4799 use namespace::autoclean;
  15         34  
  15         154  
12              
13             sub _execute {
14 1     1   5 my ( $self, $opt, $args ) = @_;
15              
16 1         30 $self->_fetch( $self->active_repos );
17             }
18              
19             1;
20              
21             ### FIXME docs
22              
23             __END__