Sha256: eb83eedd22078fe0ef3fa4ebcb1085c732d6c565258487fffa69fc6d1d6d9737

Contents?: true

Size: 653 Bytes

Versions: 19

Compression:

Stored size: 653 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'
require 'write_xlsx'
require 'stringio'

class TestWriteTabColor < Minitest::Test
  def setup
    @workbook = WriteXLSX.new(StringIO.new)
    @worksheet = @workbook.add_worksheet('')
  end

  def test_write_tab_color
    # Mock up the color palette.
    @worksheet.instance_variable_set(:@tab_color, 0x0A)
    palette = [nil, nil, [ 0xff, 0x00, 0x00, 0x00 ]]
    @worksheet.instance_variable_set(:@palette, palette)

    @worksheet.__send__('write_tab_color')
    result = @worksheet.instance_variable_get(:@writer).string
    expected = '<tabColor rgb="FFFF0000"/>'
    assert_equal(expected, result)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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