Sha256: 3ed792b46b71cb8ae28a85a6dec2cc3485a50ffcee59771a52d07279753e5ca5
Contents?: true
Size: 634 Bytes
Versions: 42
Compression:
Stored size: 634 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable07 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_table07 @xlsx = 'table07.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', {:header_row => 0}) worksheet.write('A1', 'Foo') workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end
Version data entries
42 entries across 42 versions & 1 rubygems