File Coverage

blib/lib/App/MaMGal/Entry/NonPicture.pm
Criterion Covered Total %
statement 14 15 93.3
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 3 0.0
total 20 25 80.0


line stmt bran cond sub pod time code
1             # mamgal - a program for creating static image galleries
2             # Copyright 2007, 2008 Marcin Owsiany
3             # See the README file for license information
4             # A class for any non-directory which is not a picture, either
5             package App::MaMGal::Entry::NonPicture;
6 2     2   5139 use strict;
  2         3  
  2         68  
7 2     2   11 use warnings;
  2         3  
  2         62  
8 2     2   12 use base 'App::MaMGal::Entry';
  2         4  
  2         1090  
9 2     2   12 use Carp;
  2         3  
  2         195  
10              
11 0     0 0 0 sub make {}
12 4     4 0 2403 sub page_path { shift->{base_name} }
13 4     4 0 1972 sub thumbnail_path { }
14              
15             1;