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

use Spreadsheet::ParseXLSX;

my $wb = Spreadsheet::ParseXLSX->new->parse('t/data/bug-11.xlsx');
is($wb->worksheet_count, 1);

my $ws = $wb->worksheet(0);
is($ws->get_cell(0, 0)->value, "foobarbaz");
is($ws->get_cell(0, 1)->value, "quux");

done_testing;