summaryrefslogtreecommitdiffstats
path: root/t/bug-5.t
blob: 495582ad63b518c37ca2375145cade13168dbd28 (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-5.xlsx');
is($wb->worksheet_count, 1);

done_testing;