Sha256: 34349f8b3518b1a6d66280aefb8b1644c41561ce96548f30b4943630ae10a469

Contents?: true

Size: 1.46 KB

Versions: 19

Compression:

Stored size: 1.46 KB

Contents

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

class TestRegressionCondFormat04 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_cond_format04
    @xlsx = 'cond_format04.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    format1 = workbook.add_format(:num_format => 2,       :dxf_index => 1)
    format2 = workbook.add_format(:num_format => '0.000', :dxf_index => 0)

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

    worksheet.conditional_formatting('A1',
                                     {
                                       :type     => 'cell',
                                       :format   => format1,
                                       :criteria => '>',
                                       :value    => 2
                                     }
                                     )

    worksheet.conditional_formatting('A2',
                                     {
                                       :type     => 'cell',
                                       :format   => format2,
                                       :criteria => '<',
                                       :value    => 8
                                     }
                                     )

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

Version data entries

19 entries across 19 versions & 1 rubygems

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