File Coverage

blib/lib/PkgForge/App/Incoming.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod n/a
total 16 18 88.8


line stmt bran cond sub pod time code
1             package PkgForge::App::Incoming; # -*-perl-*-
2 1     1   2122 use strict;
  1         2  
  1         35  
3 1     1   6 use warnings;
  1         2  
  1         44  
4              
5             # $Id: Incoming.pm.in 15153 2010-12-17 09:10:40Z squinney@INF.ED.AC.UK $
6             # $Source:$
7             # $Revision: 15153 $
8             # $HeadURL: https://svn.lcfg.org/svn/source/tags/PkgForge-Server/PkgForge_Server_1_1_10/lib/PkgForge/App/Incoming.pm.in $
9             # $Date: 2010-12-17 09:10:40 +0000 (Fri, 17 Dec 2010) $
10              
11             our $VERSION = '1.1.10';
12              
13 1     1   5 use Moose;
  1         3  
  1         6  
14              
15             extends qw(PkgForge::Handler::Incoming MooseX::App::Cmd::Command);
16              
17 0     0     sub abstract { return q{Process the incoming package queue} };
18              
19 1     1   7367 no Moose;
  1         2  
  1         6  
20             __PACKAGE__->meta->make_immutable;
21              
22             1;