# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx/workbook' require 'write_xlsx/package/styles' require 'stringio' class TestStyles08 < Test::Unit::TestCase def test_styles_08 workbook = WriteXLSX.new(StringIO.new) format1 = workbook.add_format(:pattern => 1, :bg_color => 'red', :bold => 1) format2 = workbook.add_format(:bg_color => 'red', :italic => 1) format3 = workbook.add_format(:fg_color => 'red', :underline => 1) workbook.__send__('set_default_xf_indices') workbook.__send__('prepare_format_properties') @style = Writexlsx::Package::Styles.new @style.set_style_properties( workbook.xf_formats, workbook.palette, workbook.font_count, workbook.num_format_count, workbook.border_count, workbook.fill_count, workbook.custom_colors, workbook.dxf_formats ) @style.assemble_xml_file result = got_to_array(@style.xml_str) expected = expected_to_array(< EOS ) assert_equal(expected, result) end end