Sha256: 80c754a3594e2b3c48d52dbf5a92897402451f692afb4b9cb32360cf0320ca0f
Contents?: true
Size: 868 Bytes
Versions: 10
Compression:
Stored size: 868 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionEscapes02 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_chart_escapes02 @xlsx = 'escapes02.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet worksheet.write('A1', %q{"<>'&}) worksheet.write_comment('B2', %q{<>&"'}) # Set the author to match the target XLSX file. worksheet.set_comments_author(%q{I am '"<>&}) workbook.close compare_xlsx_for_regression( File.join(@regression_output, @xlsx), @xlsx, { 'xl/workbook.xml' => ['<workbookView'] } ) end end
Version data entries
10 entries across 10 versions & 1 rubygems