summaryrefslogtreecommitdiffstats
path: root/t/bug-29.t
blob: 19ef59296d33fad60e64cf4fb241e4fa5fbd82f5 (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-29.xlsx');
pass('it parses successfully');

done_testing;