File Coverage

blib/lib/Footprintless/Plugin.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 6 83.3
pod 3 3 100.0
total 19 20 95.0


line stmt bran cond sub pod time code
1 1     1   75443 use strict;
  1         2  
  1         25  
2 1     1   4 use warnings;
  1         2  
  1         133  
3              
4             package Footprintless::Plugin;
5             $Footprintless::Plugin::VERSION = '1.29';
6             # ABSTRACT: The base class for footprintless plugins
7             # PODNAME: Footprintless::Plugin
8              
9             sub new {
10 2     2 1 5 my ( $class, $config, @rest ) = @_;
11 2         10 return bless( { config => $config }, $class )->_init(@rest);
12             }
13              
14             sub command_packages {
15 1     1 1 3 my ($self) = @_;
16 1         6 return ( ref($self) . "::Command" );
17             }
18              
19             sub _init {
20 2     2   7 return $_[0];
21             }
22              
23       0 1   sub factory_methods {
24              
25             # return a map of factory methods by name
26             }
27              
28             1;
29              
30             __END__