Sha256: 91e944a4575d5a4ef8d43ed5497e37f429c840c354c593681b224570e7dc7760
Contents?: true
Size: 537 Bytes
Versions: 10
Compression:
Stored size: 537 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable25 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) if @tempfile end def test_table25 @xlsx = 'table25.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet # Set the column width to match the target worksheet. worksheet.set_column('C:F', 10.288) # Add the table. worksheet.add_table('C3:F13', {:style => 'None'}) workbook.close compare_for_regression end end
Version data entries
10 entries across 10 versions & 1 rubygems