Sha256: 496cd73629d12a79524bb1e593b54843d1008154d6fb4c2ad2242f8bf28b75d0

Contents?: true

Size: 491 Bytes

Versions: 19

Compression:

Stored size: 491 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'
require 'write_xlsx/chart'

class TestWriteMarker < Minitest::Test
  def setup
    @chart = Writexlsx::Chart.new('Bar')
  end

  def test_write_marker
    expected = '<c:marker><c:symbol val="none"/></c:marker>'
    @chart.instance_variable_set(:@default_marker, Writexlsx::Chart::Marker.new(:type => 'none'))
    @chart.__send__('write_marker')
    result = @chart.instance_variable_get(:@writer).string
    assert_equal(expected, result)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/chart/test_write_marker.rb
write_xlsx-1.09.3 test/chart/test_write_marker.rb
write_xlsx-1.09.2 test/chart/test_write_marker.rb
write_xlsx-1.09.1 test/chart/test_write_marker.rb
write_xlsx-1.09.0 test/chart/test_write_marker.rb
write_xlsx-1.08.2 test/chart/test_write_marker.rb
write_xlsx-1.08.1 test/chart/test_write_marker.rb
write_xlsx-1.08.0 test/chart/test_write_marker.rb
write_xlsx-1.07.0 test/chart/test_write_marker.rb
write_xlsx-1.04.0 test/chart/test_write_marker.rb
write_xlsx-1.02.0 test/chart/test_write_marker.rb
write_xlsx-1.01.0 test/chart/test_write_marker.rb
write_xlsx-1.00.0 test/chart/test_write_marker.rb
write_xlsx-0.99.0 test/chart/test_write_marker.rb
write_xlsx-0.97.0 test/chart/test_write_marker.rb
write_xlsx-0.90.0 test/chart/test_write_marker.rb
write_xlsx-0.89.0 test/chart/test_write_marker.rb
write_xlsx-0.88.0 test/chart/test_write_marker.rb
write_xlsx-0.87.0 test/chart/test_write_marker.rb