summaryrefslogtreecommitdiffstats
path: root/t/bug-32.t
diff options
context:
space:
mode:
Diffstat (limited to 't/bug-32.t')
-rw-r--r--t/bug-32.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/bug-32.t b/t/bug-32.t
new file mode 100644
index 0000000..c9f095a
--- /dev/null
+++ b/t/bug-32.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-32.xlsx');
+pass('it parses successfully');
+
+done_testing;