summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-08-16 03:08:25 -0400
committerJesse Luehrs <doy@tozt.net>2016-08-16 03:09:53 -0400
commit80198923186bedda61d4dceb0272210dc8bec533 (patch)
treee7926db1cdce6f0b110c3265536d38b1c32e9f2f /t
parenteb63a78baa763b463f6975143d7a3d63c4fe1e75 (diff)
downloadspreadsheet-parsexlsx-80198923186bedda61d4dceb0272210dc8bec533.tar.gz
spreadsheet-parsexlsx-80198923186bedda61d4dceb0272210dc8bec533.zip
handle cell data without explicit location data (#61)
apparently this is a thing sometimes?
Diffstat (limited to 't')
-rw-r--r--t/bug-61.t11
-rw-r--r--t/data/bug-61.xlsxbin0 -> 90974 bytes
2 files changed, 11 insertions, 0 deletions
diff --git a/t/bug-61.t b/t/bug-61.t
new file mode 100644
index 0000000..72f8af4
--- /dev/null
+++ b/t/bug-61.t
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+use Spreadsheet::ParseXLSX;
+
+my $wb = Spreadsheet::ParseXLSX->new->parse('t/data/bug-61.xlsx');
+pass('it parses successfully');
+
+done_testing;
diff --git a/t/data/bug-61.xlsx b/t/data/bug-61.xlsx
new file mode 100644
index 0000000..82f791b
--- /dev/null
+++ b/t/data/bug-61.xlsx
Binary files differ