Sha256: d8d0d07f673562dfcf4955df3676d03f3ddf70f5f5817b20cff81fb7ddd39d37
Contents?: true
Size: 751 Bytes
Versions: 19
Compression:
Stored size: 751 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionSharedStrings01 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_shared_strings01 @xlsx = 'shared_strings01.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet # Test that control characters and any other single byte characters are # handled correctly by the SharedStrings module. We skip chr 34 = " in # this test since it isn't encode by Excel as ". (0..255).each do |i| next if i == 34 worksheet.write_string(i, 0, i.chr) end workbook.close compare_for_regression( nil, {'xl/workbook.xml' => ['<workbookView']} ) end end
Version data entries
19 entries across 19 versions & 1 rubygems