Sha256: 258f18e58c9bafd5f87b0b74ba6d2c3002e26409e4201bd25cbd5e10e6bb602b
Contents?: true
Size: 678 Bytes
Versions: 41
Compression:
Stored size: 678 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionRichString03 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_rich_string03 @xlsx = 'rich_string03.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet bold = workbook.add_format(:bold => 1) italic = workbook.add_format(:italic => 1) worksheet.write('A1', 'Foo', bold) worksheet.write('A2', 'Bar', italic) worksheet.write_rich_string('A3', bold, 'abc', 'defg') workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end
Version data entries
41 entries across 41 versions & 1 rubygems