Sha256: fde30ede468f3d1ca9d77a4023218f8269bd353c84e8692b724bb6e2a4fe6339
Contents?: true
Size: 1004 Bytes
Versions: 4
Compression:
Stored size: 1004 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable06 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table06 @xlsx = 'table06.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet # Set the column width to match the taget worksheet. worksheet.set_column('C:H', 10.288) # Add the table. worksheet.add_table('C3:F13') worksheet.add_table('F15:H20') worksheet.add_table('C23:D30') # Add a link to check rId handling. worksheet.write('A1', 'http://perl.com/') worksheet.write('C1', 'http://perl.com/') # Add comments to check rId handling. worksheet.comments_author = 'John' worksheet.write_comment('H1', 'Test1') worksheet.write_comment('J1', 'Test2') # Add drawing to check rId handling. worksheet.insert_image('A4', File.join(@test_dir, 'regression', 'images/blue.png')) workbook.close compare_for_regression end end
Version data entries
4 entries across 4 versions & 1 rubygems