File Coverage

blib/lib/Labyrinth/Plugin/Album.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Labyrinth::Plugin::Album;
2              
3 5     5   167669 use strict;
  5         12  
  5         268  
4 5     5   29 use warnings;
  5         9  
  5         354  
5              
6             our $VERSION = '1.12';
7              
8             =head1 NAME
9              
10             Labyrinth::Plugin::Album - Photo album plugin handler for Labyrinth
11              
12             =head1 DESCRIPTION
13              
14             Contains all the photo album handling functionality for the Labyrinth
15             framework.
16              
17             =cut
18              
19             #----------------------------------------------------------------------------
20             # Libraries
21              
22 5     5   29 use base qw(Labyrinth::Plugin::Base);
  5         14  
  5         7217  
23              
24             1;
25              
26             __END__