summaryrefslogtreecommitdiffstats
path: root/t/bug-13.t
blob: ded3406934564070f4e0b6b89e19cba52b73d6b6 (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-13.xlsx');
is($wb->get_filename, 't/data/bug-13.xlsx');

done_testing;