Sha256: d67030e127d63b1281658ab179a5bcbb705822f7bd4b3ea489a5a2dd27257609

Contents?: true

Size: 386 Bytes

Versions: 48

Compression:

Stored size: 386 Bytes

Contents

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

class TestWriteSymbol < Test::Unit::TestCase
  def setup
    @chart = Writexlsx::Chart.new('Bar')
  end

  def test_write_symbol
    expected = '<c:symbol val="none"/>'
    @chart.__send__('write_symbol', 'none')
    result = @chart.instance_variable_get(:@writer).string
    assert_equal(expected, result)
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
write_xlsx-0.61.0 test/chart/test_write_symbol.rb
write_xlsx-0.60.0 test/chart/test_write_symbol.rb
write_xlsx-0.59.0 test/chart/test_write_symbol.rb
write_xlsx-0.58.0 test/chart/test_write_symbol.rb
write_xlsx-0.57.0 test/chart/test_write_symbol.rb
write_xlsx-0.56.0 test/chart/test_write_symbol.rb
write_xlsx-0.55.0 test/chart/test_write_symbol.rb
write_xlsx-0.54.0 test/chart/test_write_symbol.rb