File Coverage

blib/lib/Spreadsheet/ParseExcel/Font.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 12 13 92.3


line stmt bran cond sub pod time code
1             package Spreadsheet::ParseExcel::Font;
2              
3             ###############################################################################
4             #
5             # Spreadsheet::ParseExcel::Font - A class for Cell fonts.
6             #
7             # Used in conjunction with Spreadsheet::ParseExcel.
8             #
9             # Copyright (c) 2014 Douglas Wilson
10             # Copyright (c) 2009-2013 John McNamara
11             # Copyright (c) 2006-2008 Gabor Szabo
12             # Copyright (c) 2000-2006 Kawai Takanori
13             #
14             # perltidy with standard settings.
15             #
16             # Documentation after __END__
17             #
18              
19 21     21   120 use strict;
  21         36  
  21         713  
20 21     21   104 use warnings;
  21         34  
  21         2148  
21              
22             our $VERSION = '0.65';
23              
24             sub new {
25 236     236 0 2232 my ( $class, %rhIni ) = @_;
26 236         878 my $self = \%rhIni;
27              
28 236         1065 bless $self, $class;
29             }
30              
31             1;
32              
33             __END__