# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx' require 'stringio' class TestCondFormat15 < Test::Unit::TestCase def setup @workbook = WriteXLSX.new(StringIO.new) @worksheet = @workbook.add_worksheet('') end ############################################################################### # # 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) %w[=$A$1>5 =$A$2<80 "1+2" =$A$3>$A$4].each do |criteria| @worksheet.conditional_formatting('A1:A4', { :type => 'formula', :criteria => criteria, :format => nil } ) end @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 $A$1>5 $A$2<80 "1+2" $A$3>$A$4 EOS end end