# -*- coding: utf-8 -*- require 'helper' require 'write_xlsx' require 'stringio' class TestCondFormat0 < 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) @worksheet.conditional_formatting('A1:A4', { :type => 'blanks', :format => nil } ) @worksheet.conditional_formatting('A1:A4', { :type => 'no_blanks', :format => nil } ) @worksheet.conditional_formatting('A1:A4', { :type => 'errors', :format => nil } ) @worksheet.conditional_formatting('A1:A4', { :type => 'no_errors', :format => nil } ) @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 LEN(TRIM(A1))=0 LEN(TRIM(A1))>0 ISERROR(A1) NOT(ISERROR(A1)) EOS end end