Excel-Writer-XLSX

 view release on metacpan or  search on metacpan

t/chart/sub_write_series_formula.t  view on Meta::CPAN

###############################################################################
#
# Tests for Excel::Writer::XLSX::Chart methods.
#
# Copyright 2000-2025, John McNamara, jmcnamara@cpan.org
#
# SPDX-License-Identifier: Artistic-1.0-Perl OR GPL-1.0-or-later
#

use lib 't/lib';
use TestFunctions '_new_object';
use strict;
use warnings;
use Excel::Writer::XLSX::Chart;

use Test::More tests => 1;


###############################################################################
#
# Tests setup.
#
my $expected;
my $got;
my $caption;
my $chart;


###############################################################################
#
# Test the _write_f() method.
#
$caption  = " \tChart: _write_f()";
$expected = '<c:f>Sheet1!$A$1:$A$5</c:f>';

$chart = _new_object( \$got, 'Excel::Writer::XLSX::Chart' );

$chart->_write_series_formula( 'Sheet1!$A$1:$A$5' );

is( $got, $expected, $caption );

__END__




( run in 0.844 second using v1.01-cache-2.11-cpan-39bf76dae61 )