Sha256: ed20d3399a616a1dc9b5f71fbd44db5e97a8cfd81289ccd757e2d7a991d1d356

Contents?: true

Size: 772 Bytes

Versions: 19

Compression:

Stored size: 772 Bytes

Contents

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

class TestRegressionRichString12 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_rich_string12
    @xlsx = 'rich_string12.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    worksheet.set_column('A:A', 30)
    worksheet.set_row(2, 60)

    bold   = workbook.add_format(:bold      => 1)
    italic = workbook.add_format(:italic    => 1)
    wrap   = workbook.add_format(:text_wrap => 1)

    worksheet.write('A1', 'Foo', bold)
    worksheet.write('A2', 'Bar', italic)
    worksheet.write_rich_string('A3', "This is\n", bold, "bold\n", "and this is\n", italic, 'italic', wrap)

    workbook.close
    compare_for_regression
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/regression/test_rich_string12.rb
write_xlsx-1.09.3 test/regression/test_rich_string12.rb
write_xlsx-1.09.2 test/regression/test_rich_string12.rb
write_xlsx-1.09.1 test/regression/test_rich_string12.rb
write_xlsx-1.09.0 test/regression/test_rich_string12.rb
write_xlsx-1.08.2 test/regression/test_rich_string12.rb
write_xlsx-1.08.1 test/regression/test_rich_string12.rb
write_xlsx-1.08.0 test/regression/test_rich_string12.rb
write_xlsx-1.07.0 test/regression/test_rich_string12.rb
write_xlsx-1.04.0 test/regression/test_rich_string12.rb
write_xlsx-1.02.0 test/regression/test_rich_string12.rb
write_xlsx-1.01.0 test/regression/test_rich_string12.rb
write_xlsx-1.00.0 test/regression/test_rich_string12.rb
write_xlsx-0.99.0 test/regression/test_rich_string12.rb
write_xlsx-0.97.0 test/regression/test_rich_string12.rb
write_xlsx-0.90.0 test/regression/test_rich_string12.rb
write_xlsx-0.89.0 test/regression/test_rich_string12.rb
write_xlsx-0.88.0 test/regression/test_rich_string12.rb
write_xlsx-0.87.0 test/regression/test_rich_string12.rb