Fixed typo, HIDE_GRIDLINES instead of HIDE_GRIDLINE
[p5sagit/Excel-Template.git] / t / mock.pm
1 package mock;
2
3 use strict;
4
5 use vars qw/ @calls /;
6
7 @calls = ();
8
9 sub reset { @calls = (); }
10 sub get_calls { @calls }
11
12
13 1;
14 __END__