Sha256: bd592a65a69bb69c24aefe5848339fe8428633b0b2154c452fa87cd0b394f9db
Contents?: true
Size: 596 Bytes
Versions: 7
Compression:
Stored size: 596 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable03 < Test::Unit::TestCase 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
7 entries across 7 versions & 1 rubygems