r13919@rob-kinyons-powerbook58: rob | 2006-06-02 10:30:39 -0400
[p5sagit/Excel-Template.git] / t / Spreadsheet / WriteExcel / Big.pm
CommitLineData
6dd4c89d 1package Spreadsheet::WriteExcel::Big;
2
3use strict;
4
5use vars qw/ @ISA /;
6@ISA = qw( Spreadsheet::WriteExcel );
7
8use Spreadsheet::WriteExcel;
9
10use mock;
11
12sub new {
13 my $self = bless {
14 }, shift;
15
16 {
17 local $" = "', '";
18 push @mock::calls, ref($self) . "::new( '@_' )";
19 }
20
21 return $self;
22}
23
241;
25__END__