Sha256: 69ab1355686f9ca7897f2c2b860231086185bbce1581ffe1efe805f637567e35

Contents?: true

Size: 816 Bytes

Versions: 15

Compression:

Stored size: 816 Bytes

Contents

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

class TestRegressionHyperlink20 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_hyperlink20
    @xlsx = 'hyperlink20.xlsx'
    workbook  = WriteXLSX.new(@io)
    workbook.instance_variable_set('@custom_colors', ['FF0000FF'])

    worksheet = workbook.add_worksheet
    format1   = workbook.add_format(:color => 'blue', :underline => 1)
    format2   = workbook.add_format(:color => 'red',  :underline => 1)

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

    worksheet.write_url('A1', 'http://www.python.org/1', format1)
    worksheet.write_url('A2', 'http://www.python.org/2', format2)

    workbook.close

    compare_for_regression
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

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