File Coverage

blib/lib/Gantry/Init.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 7 71.4


line stmt bran cond sub pod time code
1             package Gantry::Init;
2 6     6   31 use strict;
  6         10  
  6         338  
3              
4             sub base_root {
5 0     0 1   return "/home/httpd/html/gantry";
6             }
7             1;
8              
9             =head1 NAME
10              
11             Gantry::Init - stores things the user provided to Build.PL during install
12              
13             =head1 SYNOPSIS
14              
15             use Gantry::Init;
16             my $base_root = Gantry::Init->base_root();
17              
18             =head1 Methods
19              
20             =head2 base_root
21              
22             Returns the local system path to Gantry's default templates. This usually
23             becomes the last item in the Template Toolkit template path.
24              
25             =head1 AUTHOR
26              
27             Auto-generated by Build.PL
28              
29             =cut
30