Sha256: 9aa3d40ccfaad1f9ed375bc8c26c217d64a55ebb7380ea77ce3a20ad380c780a
Contents?: true
Size: 811 Bytes
Versions: 7
Compression:
Stored size: 811 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionHeaderImage08 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_header_image08 @xlsx = 'header_image08.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write('A1', 'Foo') worksheet.write_comment('B2', 'Some text') # Set the author to match the target XLSX file. worksheet.comments_author = 'John' worksheet.set_header('&L&G', nil, { :image_left => 'test/regression/images/red.jpg' }) workbook.close compare_for_regression( [], {'xl/worksheets/sheet1.xml' => [ '<pageMargins', '<pageSetup' ]} ) end end
Version data entries
7 entries across 7 versions & 1 rubygems