Sha256: fb0630589cdeb211085195115a202dfbb4e2bde7dd9261d31485fc3b7d8ea588

Contents?: true

Size: 843 Bytes

Versions: 15

Compression:

Stored size: 843 Bytes

Contents

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

class TestRegressionCondFormat14 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_cond_format14
    @xlsx = 'cond_format14.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    format = workbook.add_format(:bg_color => 'red')

    worksheet.write('A1', 10)
    worksheet.write('A2', 20)
    worksheet.write('A3', 30)
    worksheet.write('A4', 40)

    worksheet.conditional_formatting(
      'A1',
      {
        :type         => 'cell',
        :format       => format,
        :criteria     => 'greater than',
        :value        => 5,
        :stop_if_true => 1
      }
    )

    workbook.close
    compare_for_regression(
      nil,
      { 'xl/workbook.xml' => ['<workbookView'] }
    )
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

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