Sha256: 6ccaaa228e3f3e41f10dbe9110aee43fa3732267ba80ff3a7dd1369dac3e96f5

Contents?: true

Size: 659 Bytes

Versions: 48

Compression:

Stored size: 659 Bytes

Contents

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

class TestWriteTabColor < Test::Unit::TestCase
  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

48 entries across 48 versions & 1 rubygems

Version Path
write_xlsx-0.77.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.76.3 test/worksheet/test_write_tab_color.rb
write_xlsx-0.76.2 test/worksheet/test_write_tab_color.rb
write_xlsx-0.76.1 test/worksheet/test_write_tab_color.rb
write_xlsx-0.76.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.75.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.74.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.73.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.72.3.beta1 test/worksheet/test_write_tab_color.rb
write_xlsx-0.72.2 test/worksheet/test_write_tab_color.rb
write_xlsx-0.72.1 test/worksheet/test_write_tab_color.rb
write_xlsx-0.72.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.71.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.70.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.69.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.65.1 test/worksheet/test_write_tab_color.rb
write_xlsx-0.65.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.64.1 test/worksheet/test_write_tab_color.rb
write_xlsx-0.64.0 test/worksheet/test_write_tab_color.rb
write_xlsx-0.62.0 test/worksheet/test_write_tab_color.rb