Sha256: 047e6275c7739ba971cb7620016bbe1fbd8b52ba2460bff0da65235aa9c96a9d

Contents?: true

Size: 944 Bytes

Versions: 15

Compression:

Stored size: 944 Bytes

Contents

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

class TestRegressionHyperlink18 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_hyperlink18
    @xlsx = 'hyperlink18.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    # Turn off default URL format for testing.
    worksheet.instance_variable_set(:@default_url_format, nil)

    # Test long URL at Excel limit.
    worksheet.write_url('A1', 'http://google.com/00000000001111111111222222222233333333334444444444555555555566666666666777777777778888888888999999999990000000000111111111122222222223333333333444444444455555555556666666666677777777777888888888899999999999000000000011111111112222222222x')

    workbook.close
    compare_for_regression(
                                {},
                                { 'xl/workbook.xml' => ['<workbookView'] }
                                )
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/regression/test_hyperlink18.rb
write_xlsx-1.09.3 test/regression/test_hyperlink18.rb
write_xlsx-1.09.2 test/regression/test_hyperlink18.rb
write_xlsx-1.09.1 test/regression/test_hyperlink18.rb
write_xlsx-1.09.0 test/regression/test_hyperlink18.rb
write_xlsx-1.08.2 test/regression/test_hyperlink18.rb
write_xlsx-1.08.1 test/regression/test_hyperlink18.rb
write_xlsx-1.08.0 test/regression/test_hyperlink18.rb
write_xlsx-1.07.0 test/regression/test_hyperlink18.rb
write_xlsx-1.04.0 test/regression/test_hyperlink18.rb
write_xlsx-1.02.0 test/regression/test_hyperlink18.rb
write_xlsx-1.01.0 test/regression/test_hyperlink18.rb
write_xlsx-1.00.0 test/regression/test_hyperlink18.rb
write_xlsx-0.99.0 test/regression/test_hyperlink18.rb
write_xlsx-0.97.0 test/regression/test_hyperlink18.rb