r13919@rob-kinyons-powerbook58: rob | 2006-06-02 10:30:39 -0400
[p5sagit/Excel-Template.git] / t / Spreadsheet / WriteExcel / Big.pm
1 package Spreadsheet::WriteExcel::Big;
2
3 use strict;
4
5 use vars qw/ @ISA /;
6 @ISA = qw( Spreadsheet::WriteExcel );
7
8 use Spreadsheet::WriteExcel;
9
10 use mock;
11
12 sub 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
24 1;
25 __END__