File Coverage

blib/lib/Clustericious/Config/Plugin.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             package Clustericious::Config::Plugin;
2              
3 1     1   705 use strict;
  1         6  
  1         32  
4 1     1   5 use warnings;
  1         1  
  1         24  
5 1     1   517 use Clustericious::Config::Helpers;
  1         4  
  1         152  
6              
7             # ABSTRACT: Deprecated module
8             our $VERSION = '0.29'; # VERSION
9              
10              
11             # Hack to keep old versions of Test::Clustericious::Cluster working
12             *EXPORT = \@Clustericious::Config::Helpers::EXPORT;
13              
14             sub Clustericious::Config::Helpers::cluster
15             {
16 0     0 0   goto &Clustericious::Config::Plugin::cluster;
17             }
18              
19             1;
20              
21             __END__