Sha256: cc5910ac4a4aa54d888bf0f754237df7cb410da7fc8231e0f07a6998ca33b378
Contents?: true
Size: 868 Bytes
Versions: 7
Compression:
Stored size: 868 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable15 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table15 @xlsx = 'table15.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet data = [ [ 'Foo', 1234, 2000, 4321 ], [ 'Bar', 1256, 0, 4320 ], [ 'Baz', 2234, 3000, 4332 ], [ 'Bop', 1324, 1000, 4333 ] ] # Set the column width to match the taget worksheet. worksheet.set_column('C:F', 10.288) # Add the table. worksheet.add_table('C2:F6', { :data => data }) workbook.close compare_for_regression( nil, { 'xl/workbook.xml' => ['<workbookView'] } ) end end
Version data entries
7 entries across 7 versions & 1 rubygems