Sha256: 0d5fd920579c2cdd5da5f856dc65ce218db8b0bc438946220510636234b840a5

Contents?: true

Size: 782 Bytes

Versions: 25

Compression:

Stored size: 782 Bytes

Contents

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

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

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

  def test_hyperlink20
    @xlsx = 'hyperlink20.xlsx'
    workbook  = WriteXLSX.new(@xlsx)
    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)

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

    workbook.close

    compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

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