Sha256: 77304fe30fd2e74b6a3e02577b3bd9ba1531c84182c6c5725842d88aafb68f20

Contents?: true

Size: 972 Bytes

Versions: 42

Compression:

Stored size: 972 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'

class TestRegressionSharedStrings01 < Test::Unit::TestCase
  def setup
    setup_dir_var
  end

  def teardown
    File.delete(@xlsx) if File.exist?(@xlsx)
  end

  def test_shared_strings01
    @xlsx = 'shared_strings01.xlsx'
    workbook    = WriteXLSX.new(@xlsx)
    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 &quot;.
    (0..255).each do |i|
      next if i == 34
      worksheet.write_string(i, 0, i.chr)
    end

    workbook.close
    compare_xlsx_for_regression(
                                File.join(@regression_output, @xlsx),
                                @xlsx,
                                nil,
                                {'xl/workbook.xml' => ['<workbookView']}
                                )
  end
end

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
write_xlsx-0.85.5 test/regression/test_shared_strings01.rb
write_xlsx-0.85.4 test/regression/test_shared_strings01.rb
write_xlsx-0.85.3 test/regression/test_shared_strings01.rb
write_xlsx-0.85.2 test/regression/test_shared_strings01.rb
write_xlsx-0.85.1 test/regression/test_shared_strings01.rb
write_xlsx-0.83.0 test/regression/test_shared_strings01.rb
write_xlsx-0.81.1 test/regression/test_shared_strings01.rb
write_xlsx-0.81.0 test/regression/test_shared_strings01.rb
write_xlsx-0.80.0 test/regression/test_shared_strings01.rb
write_xlsx-0.79.0 test/regression/test_shared_strings01.rb
write_xlsx-0.78.0 test/regression/test_shared_strings01.rb
write_xlsx-0.77.2 test/regression/test_shared_strings01.rb
write_xlsx-0.77.1 test/regression/test_shared_strings01.rb
write_xlsx-0.77.0 test/regression/test_shared_strings01.rb
write_xlsx-0.76.3 test/regression/test_shared_strings01.rb
write_xlsx-0.76.2 test/regression/test_shared_strings01.rb
write_xlsx-0.76.1 test/regression/test_shared_strings01.rb
write_xlsx-0.76.0 test/regression/test_shared_strings01.rb
write_xlsx-0.75.0 test/regression/test_shared_strings01.rb
write_xlsx-0.74.0 test/regression/test_shared_strings01.rb