summaryrefslogtreecommitdiffstats
path: root/t/bug-41.t
blob: 7bcb52bbb67a08da79f6a06e9e538b3313f4589b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

use Spreadsheet::ParseXLSX;

{
    local $SIG{__WARN__} = sub { fail("unexpected warning: $_[0]") };
    my $wb = Spreadsheet::ParseXLSX->new->parse('t/data/bug-41.xlsx');
    pass('it parses successfully');
}

done_testing;