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