Sha256: fc16ce7a42d5914cc78bbfc2fab25bef45b8674b2f19c08949fde955924c5b23
Contents?: true
Size: 827 Bytes
Versions: 41
Compression:
Stored size: 827 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionRichString09 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_rich_string09 @xlsx = 'rich_string09.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', 'a', bold, 'bc', 'defg') # The following contains 2 consectutive formats and should be ignored. worksheet.write_rich_string('A3', 'a', bold, bold, 'bc', '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
Version | Path |
---|---|
write_xlsx-0.54.0 | test/regression/test_rich_string09.rb |