Sha256: 4c300c92f5c078e81ee87a22ee33451f7d35365a2eec3e40a1e78e3a2605c6a7

Contents?: true

Size: 627 Bytes

Versions: 10

Compression:

Stored size: 627 Bytes

Contents

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

class TestRegressionHyperlink48 < Minitest::Test
  def setup
    setup_dir_var
  end

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

  def test_hyperlink48
    @xlsx = 'hyperlink48.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    worksheet.insert_image(
      'E9', 'test/regression/images/red.png',
      :url => 'https://github.com/jmcnamara'
    )
    worksheet.insert_image(
      'E13', 'test/regression/images/red.png',
      :url => 'https://github.com/jmcnamara'
    )

    workbook.close

    compare_for_regression
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/regression/test_hyperlink48.rb
write_xlsx-1.09.3 test/regression/test_hyperlink48.rb
write_xlsx-1.09.2 test/regression/test_hyperlink48.rb
write_xlsx-1.09.1 test/regression/test_hyperlink48.rb
write_xlsx-1.09.0 test/regression/test_hyperlink48.rb
write_xlsx-1.08.2 test/regression/test_hyperlink48.rb
write_xlsx-1.08.1 test/regression/test_hyperlink48.rb
write_xlsx-1.08.0 test/regression/test_hyperlink48.rb
write_xlsx-1.07.0 test/regression/test_hyperlink48.rb
write_xlsx-1.04.0 test/regression/test_hyperlink48.rb