Sha256: 5c0f64e5e961ca20db18eb0f81f6ab49450d690d0f6264dbd117c4472b8acd95
Contents?: true
Size: 503 Bytes
Versions: 19
Compression:
Stored size: 503 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable01 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table01 @xlsx = 'table01.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') workbook.close compare_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems