summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-09-16 23:35:00 -0400
committerJesse Luehrs <doy@tozt.net>2013-09-16 23:35:00 -0400
commit90ca90b8e8f2dafc2befb8c5ddba1eea8e4eebf3 (patch)
treefc893aaaaf3fdca335ae99ee5cdcf84b693310d0 /t
parent184bd929cdd7059c5387c2e753ab63731020d537 (diff)
downloadspreadsheet-parsexlsx-90ca90b8e8f2dafc2befb8c5ddba1eea8e4eebf3.tar.gz
spreadsheet-parsexlsx-90ca90b8e8f2dafc2befb8c5ddba1eea8e4eebf3.zip
fix row and column range for empty sheets (fixes #8)
Diffstat (limited to 't')
-rw-r--r--t/bug-8.t19
-rw-r--r--t/data/bug-8.xlsxbin0 -> 8639 bytes
2 files changed, 19 insertions, 0 deletions
diff --git a/t/bug-8.t b/t/bug-8.t
new file mode 100644
index 0000000..45dad0d
--- /dev/null
+++ b/t/bug-8.t
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+use Spreadsheet::ParseXLSX;
+
+my $wb = Spreadsheet::ParseXLSX->new->parse('t/data/bug-7.xlsx');
+is($wb->worksheet_count, 3);
+
+my $ws = $wb->worksheet(2);
+my ($rmin, $rmax) = $ws->row_range;
+my ($cmin, $cmax) = $ws->col_range;
+is($rmin, 0);
+is($rmax, -1);
+is($cmin, 0);
+is($cmax, -1);
+
+done_testing;
diff --git a/t/data/bug-8.xlsx b/t/data/bug-8.xlsx
new file mode 100644
index 0000000..c516813
--- /dev/null
+++ b/t/data/bug-8.xlsx
Binary files differ