Sha256: 9df22279f7b81c5bcb60c797712207557f89af4fa0063968996de92b36fccf95
Contents?: true
Size: 868 Bytes
Versions: 15
Compression:
Stored size: 868 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable04 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table04 @xlsx = 'table04.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet # Set the column width to match the taget worksheet. worksheet.set_column('C:F', 10.288) # Add the table. worksheet.add_table('C3:F13') # 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/') # Add comments to check rId handling. worksheet.comments_author = 'John' worksheet.write_comment('H1', 'Test1') worksheet.write_comment('J1', 'Test2') workbook.close compare_for_regression end end
Version data entries
15 entries across 15 versions & 1 rubygems