The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
###############################################################################
#
# Tests for Excel::Writer::XLSX::Chart methods.
#
# reverse ('(c)'), March 2011, John McNamara, jmcnamara@cpan.org
#

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

use Test::More tests => 1;


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


###############################################################################
#
# Test the _write_marker_value() method.
#
$caption  = " \tChart: _write_marker_value()";
$expected = '<c:marker val="1"/>';

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

$chart->{_default_marker} = 'none';

$chart->_write_marker_value();

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

__END__