File Coverage

blib/lib/Spreadsheet/WriteExcel/Big.pm
Criterion Covered Total %
statement 13 13 100.0
branch 1 2 50.0
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 18 20 90.0


line stmt bran cond sub pod time code
1             package Spreadsheet::WriteExcel::Big;
2              
3             ###############################################################################
4             #
5             # WriteExcel::Big
6             #
7             # Spreadsheet::WriteExcel - Write formatted text and numbers to a
8             # cross-platform Excel binary file.
9             #
10             # Copyright 2000-2010, John McNamara.
11             #
12             #
13              
14             require Exporter;
15              
16 1     1   13996 use strict;
  1         4  
  1         70  
17 1     1   7 use Spreadsheet::WriteExcel::Workbook;
  1         3  
  1         54  
18              
19              
20              
21              
22              
23              
24 1     1   1092 use vars qw($VERSION @ISA);
  1         3  
  1         150  
25             @ISA = qw(Spreadsheet::WriteExcel::Workbook Exporter);
26              
27             $VERSION = '2.40';
28              
29             ###############################################################################
30             #
31             # new()
32             #
33             # Constructor. Thin wrapper for a Workbook object.
34             #
35             # This module is no longer required directly and its use is deprecated. See
36             # the Pod documentation below.
37             #
38             sub new {
39              
40 1     1 0 11 my $class = shift;
41 1         8 my $self = Spreadsheet::WriteExcel::Workbook->new(@_);
42              
43             # Check for file creation failures before re-blessing
44 1 50       7 bless $self, $class if defined $self;
45              
46 1         4 return $self;
47             }
48              
49              
50             1;
51              
52              
53             __END__