summaryrefslogtreecommitdiffstats
path: root/t/bug-8.t
diff options
context:
space:
mode:
Diffstat (limited to 't/bug-8.t')
-rw-r--r--t/bug-8.t19
1 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;