Sha256: 7bdb5939d49b36c35200a78dc8986e9552b10ed869d5a3aee62f4f786371451f

Contents?: true

Size: 465 Bytes

Versions: 7

Compression:

Stored size: 465 Bytes

Contents

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

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

  def teardown
    @tempfile.close(true)
  end

  def test_row_col_format07
    @xlsx = 'row_col_format07.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet
    bold      = workbook.add_format(:bold => 1)

    worksheet.set_row(4, nil, bold)

    workbook.close
    compare_for_regression
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
write_xlsx-0.86.0 test/regression/test_row_col_format07.rb
write_xlsx-0.85.11 test/regression/test_row_col_format07.rb
write_xlsx-0.85.10 test/regression/test_row_col_format07.rb
write_xlsx-0.85.9 test/regression/test_row_col_format07.rb
write_xlsx-0.85.8 test/regression/test_row_col_format07.rb
write_xlsx-0.85.7 test/regression/test_row_col_format07.rb
write_xlsx-0.85.6 test/regression/test_row_col_format07.rb