Sha256: 409ff50e22c6380e6bc4abfd0ba8127a991e0e7c19508afd8482ba620517d5f7

Contents?: true

Size: 618 Bytes

Versions: 15

Compression:

Stored size: 618 Bytes

Contents

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

class TestRegressionHyperlink25 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true) if @tempfile
  end

  def test_hyperlink25
    @xlsx = 'hyperlink25.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

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

    worksheet.write_url('A1', 'http://www.google.com/#foo#bar')

    workbook.close

    compare_for_regression(
      nil,
      { '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_hyperlink25.rb
write_xlsx-1.09.3 test/regression/test_hyperlink25.rb
write_xlsx-1.09.2 test/regression/test_hyperlink25.rb
write_xlsx-1.09.1 test/regression/test_hyperlink25.rb
write_xlsx-1.09.0 test/regression/test_hyperlink25.rb
write_xlsx-1.08.2 test/regression/test_hyperlink25.rb
write_xlsx-1.08.1 test/regression/test_hyperlink25.rb
write_xlsx-1.08.0 test/regression/test_hyperlink25.rb
write_xlsx-1.07.0 test/regression/test_hyperlink25.rb
write_xlsx-1.04.0 test/regression/test_hyperlink25.rb
write_xlsx-1.02.0 test/regression/test_hyperlink25.rb
write_xlsx-1.01.0 test/regression/test_hyperlink25.rb
write_xlsx-1.00.0 test/regression/test_hyperlink25.rb
write_xlsx-0.99.0 test/regression/test_hyperlink25.rb
write_xlsx-0.97.0 test/regression/test_hyperlink25.rb