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

done_testing;