summaryrefslogtreecommitdiffstats
path: root/t/bug-32.t
blob: c9f095a17bbe9ea6bffd5435b363252cb4438178 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;