File Coverage

blib/lib/Spreadsheet/ParseExcel/Format.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::Format;
2              
3             ###############################################################################
4             #
5             # Spreadsheet::ParseExcel::Format - A class for Cell formats.
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   105 use strict;
  21         35  
  21         732  
20 21     21   106 use warnings;
  21         39  
  21         1813  
21              
22             our $VERSION = '0.65';
23              
24             sub new {
25 1065     1065 0 12345 my ( $class, %rhIni ) = @_;
26 1065         1676 my $self = \%rhIni;
27              
28 1065         6740 bless $self, $class;
29             }
30              
31             1;
32              
33             __END__