Sha256: 8fdc73fb515b0638b3c5cc6d7d22b089c9b8a7c7c8d37ac27363a9498ecd277b

Contents?: true

Size: 841 Bytes

Versions: 5

Compression:

Stored size: 841 Bytes

Contents

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

class TestRegressionBackground07 < Minitest::Test
  def setup
    setup_dir_var
  end

  def teardown
    @tempfile.close(true)
  end

  def test_background07
    @xlsx = 'background07.xlsx'
    workbook  = WriteXLSX.new(@io)
    worksheet = workbook.add_worksheet

    worksheet.insert_image('E9', 'test/regression/images/logo.jpg')
    worksheet.set_background('test/regression/images/logo.jpg')

    worksheet.set_header(
      '&C&G', nil, :image_center => 'test/regression/images/blue.jpg'
    )

    worksheet.write('A1', 'Foo')
    worksheet.write_comment('B2', 'Some text')

    # Set the author to match the target XLSX file.
    worksheet.comments_author = 'John'

    workbook.close
    compare_for_regression(
      [],
      'xl/worksheets/sheet1.xml' => ['<pageSetup']
    )
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/regression/test_background07.rb
write_xlsx-1.09.3 test/regression/test_background07.rb
write_xlsx-1.09.2 test/regression/test_background07.rb
write_xlsx-1.09.1 test/regression/test_background07.rb
write_xlsx-1.09.0 test/regression/test_background07.rb