Sha256: 10cbeabde7857546cd73ef094a5e92c7f6707567ca4b56c4f125061e200e8a69

Contents?: true

Size: 703 Bytes

Versions: 42

Compression:

Stored size: 703 Bytes

Contents

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

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

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

  def test_row_col_format13
    @xlsx = 'row_col_format13.xlsx'
    workbook  = WriteXLSX.new(@xlsx)
    worksheet = workbook.add_worksheet
    format    = workbook.add_format(:bold => 1)

    worksheet.set_column('B:D', 5)
    worksheet.set_column('F:F', 8, nil, 1)
    worksheet.set_column('H:H', nil, format)
    worksheet.set_column('J:J', 2)
    worksheet.set_column('L:L', nil, nil, 1)

    workbook.close
    compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

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