Sha256: e83a8d30bbcd82cacdc38fdecbcca4d6b32bff28a471eb46171867dea51c52a3

Contents?: true

Size: 1.35 KB

Versions: 20

Compression:

Stored size: 1.35 KB

Contents

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

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

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

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

    # We manually set the indices to get the same order as the target file.
    format1 = workbook.add_format(:num_format => 2)
    format1.instance_variable_set(:@dxf_index, 1)

    format2 = workbook.add_format(:num_format => '0.000')
    format2.instance_variable_set(:@dxf_index, 0)

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

    options = {
      :type     => 'cell',
      :format   => format1,
      :criteria => '>',
      :value    => 2
    }

    worksheet.conditional_formatting('A1', options)

    # Test re-using options.
    options[:criteria] = '<'
    options[:value]    = 8
    options[:format]   = format2

    worksheet.conditional_formatting('A2', options)

    workbook.close
    compare_xlsx_for_regression(
                                File.join(@regression_output, @xlsx),
                                @xlsx,
                                nil,
                                { 'xl/workbook.xml' => ['<workbookView'] })
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

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