Sha256: e085db35a40a8d24e9eb677db5ff58f879aa71530db1078d8ea871c7c71ddee0

Contents?: true

Size: 849 Bytes

Versions: 30

Compression:

Stored size: 849 Bytes

Contents

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

class TestRegressionRichString12 < Test::Unit::TestCase
  def setup
    setup_dir_var
  end

  def teardown
    File.delete(@xlsx) if File.exist?(@xlsx)
  end

  def test_rich_string12
    @xlsx = 'rich_string12.xlsx'
    workbook  = WriteXLSX.new(@xlsx)
    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_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
write_xlsx-0.85.5 test/regression/test_rich_string12.rb
write_xlsx-0.85.4 test/regression/test_rich_string12.rb
write_xlsx-0.85.3 test/regression/test_rich_string12.rb
write_xlsx-0.85.2 test/regression/test_rich_string12.rb
write_xlsx-0.85.1 test/regression/test_rich_string12.rb
write_xlsx-0.83.0 test/regression/test_rich_string12.rb
write_xlsx-0.81.1 test/regression/test_rich_string12.rb
write_xlsx-0.81.0 test/regression/test_rich_string12.rb
write_xlsx-0.80.0 test/regression/test_rich_string12.rb
write_xlsx-0.79.0 test/regression/test_rich_string12.rb
write_xlsx-0.78.0 test/regression/test_rich_string12.rb
write_xlsx-0.77.2 test/regression/test_rich_string12.rb
write_xlsx-0.77.1 test/regression/test_rich_string12.rb
write_xlsx-0.77.0 test/regression/test_rich_string12.rb
write_xlsx-0.76.3 test/regression/test_rich_string12.rb
write_xlsx-0.76.2 test/regression/test_rich_string12.rb
write_xlsx-0.76.1 test/regression/test_rich_string12.rb
write_xlsx-0.76.0 test/regression/test_rich_string12.rb
write_xlsx-0.75.0 test/regression/test_rich_string12.rb
write_xlsx-0.74.0 test/regression/test_rich_string12.rb