# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx' require 'stringio' class TestCondFormat21 < Test::Unit::TestCase def setup @workbook = WriteXLSX.new(StringIO.new) @worksheet = @workbook.add_worksheet('') end ############################################################################### # # Tests for Excel::Writer::XLSX::Worksheet methods. # ############################################################################### # # Test the _assemble_xml_file() method. # # Test conditional formats. # def test_conditional_formats @worksheet.select # Start test code. @worksheet.write('A1', 10) @worksheet.write('A2', 20) @worksheet.write('A3', 30) @worksheet.write('A4', 40) @worksheet.conditional_formatting('A1', { :type => 'cell', :format => nil, :criteria => 'greater than', :value => 5, :stop_if_true => 1 } ) # End test code. @worksheet.assemble_xml_file result = got_to_array(@worksheet.instance_variable_get(:@writer).string) expected = expected_to_array(expected_xml) assert_equal(expected, result) end def expected_xml < 10 20 30 40 5 EOS end end