Sha256: 7f3df59225a33e2b506205d615d21e026075107df8ed37f4b11fb0bedb928a82
Contents?: true
Size: 1.09 KB
Versions: 15
Compression:
Stored size: 1.09 KB
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') # Turn off default URL format for testing. worksheet.instance_variable_set(:@default_url_format, nil) # 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
15 entries across 15 versions & 1 rubygems