Sha256: 02986bed920aebfbb506bbfd704c5ac22a9feb4ed8da2af7fc511c0a9683aefe
Contents?: true
Size: 590 Bytes
Versions: 4
Compression:
Stored size: 590 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable03 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table03 @xlsx = 'table03.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') # Add a link to check rId handling. worksheet.write('A1', 'http://perl.com/') workbook.close compare_for_regression end end
Version data entries
4 entries across 4 versions & 1 rubygems