Sha256: 042eeb1a57da5cce26274806fa158a0940de6414e8fb5b7b7b9cb573190ad512

Contents?: true

Size: 501 Bytes

Versions: 7

Compression:

Stored size: 501 Bytes

Contents

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

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

  def teardown
    @tempfile.close(true)
  end

  def test_hyperlink11
    @xlsx = 'hyperlink11.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet
    format    = workbook.add_format(:color => 'blue', :underline => 1)

    worksheet.write_url('A1', 'http://www.perl.org/', format)

    workbook.close
    compare_for_regression
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
write_xlsx-0.86.0 test/regression/test_hyperlink11.rb
write_xlsx-0.85.11 test/regression/test_hyperlink11.rb
write_xlsx-0.85.10 test/regression/test_hyperlink11.rb
write_xlsx-0.85.9 test/regression/test_hyperlink11.rb
write_xlsx-0.85.8 test/regression/test_hyperlink11.rb
write_xlsx-0.85.7 test/regression/test_hyperlink11.rb
write_xlsx-0.85.6 test/regression/test_hyperlink11.rb