File: bug-7.t

package info (click to toggle)
libspreadsheet-parsexlsx-perl 0.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,832 kB
  • sloc: perl: 2,502; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (4)
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;

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

my $ws = $wb->worksheet(0);
is($ws->get_cell(0, 0)->value, "#N/A");

done_testing;