# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable03 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_table03 @xlsx = 'table03.xlsx' workbook = WriteXLSX.new(@xlsx) 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') # Add a link to check rId handling. worksheet.write('A1', 'http://perl.com/') workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end