File Coverage

blib/lib/Formatter/HTML/MPS/OutputFormats.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Formatter::HTML::MPS::OutputFormats;
2              
3 5     5   33 use strict;
  5         9  
  5         163  
4 5     5   29 use warnings;
  5         8  
  5         123  
5              
6 5     5   25 use Exporter;
  5         8  
  5         191  
7 5     5   27 use vars qw( @ISA @EXPORT $VERSION);
  5         19  
  5         1288  
8              
9             @ISA = qw( Exporter );
10             @EXPORT = qw( %HEADERS %FOOTERS %CSS );
11             $VERSION = '0.2';
12              
13             our %HEADERS = (
14             'xhtml1.0_strict' =>
15             q{
16            
17            
18            
19            
20             $title
21             $css
22            
23            
24              
25             }
26            
27             );
28              
29             our %CSS = ( 'xhtml1.0_strict' =>
30             { link => q{},
31             inline => q{} }
32             );
33              
34             our %FOOTERS = (
35             'xhtml1.0_strict' =>
36             q{
37            
38            
39             }
40            
41              
42             );