Sha256: 28c4911296a27df27cb95358e96408f0d21c5f2dbf9a5143d786d0461c7ce4ee
Contents?: true
Size: 1.71 KB
Versions: 42
Compression:
Stored size: 1.71 KB
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionCondFormat03 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_cond_format03 @xlsx = 'cond_format03.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet format1 = workbook.add_format(:font_strikeout => 1, :dxf_index => 1) format2 = workbook.add_format(:underline => 1, :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 => 'between', :minimum => 2, :maximum => 6 } ) worksheet.conditional_formatting('A1', { :type => 'cell', :format => format2, :criteria => 'greater than', :value => 1 } ) workbook.close compare_xlsx_for_regression( File.join(@regression_output, @xlsx), @xlsx, nil, { 'xl/workbook.xml' => ['<workbookView'] }) end end
Version data entries
42 entries across 42 versions & 1 rubygems