Sha256: be4d78d2a8b11dc97ff323b5581399489d2794ede62349bc31605971d7dae191
Contents?: true
Size: 1.9 KB
Versions: 7
Compression:
Stored size: 1.9 KB
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable17 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table17 @xlsx = 'table17.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet # Set the column width to match the taget worksheet. worksheet.set_column('B:K', 10.288) # Write some strings to order the string table. worksheet.write_string('A1', 'Column1') worksheet.write_string('B1', 'Column2') worksheet.write_string('C1', 'Column3') worksheet.write_string('D1', 'Column4') worksheet.write_string('E1', 'Column5') worksheet.write_string('F1', 'Column6') worksheet.write_string('G1', 'Column7') worksheet.write_string('H1', 'Column8') worksheet.write_string('I1', 'Column9') worksheet.write_string('J1', 'Column10') worksheet.write_string('K1', 'Total') # Populate the data range. data = [ 0, 0, 0, nil, nil, 0, 0, 0, 0, 0]; worksheet.write_row('B4', data) worksheet.write_row('B5', data) worksheet.write('G4', 4) worksheet.write('G5', 5) worksheet.write('I4', 1) worksheet.write('I5', 2) # Add the table. worksheet.add_table( 'B3:K6', { :total_row => 1, :columns => [ {:total_string => 'Total'}, {}, {:total_function => 'Average'}, {:total_function => 'COUNT'}, {:total_function => 'count_nums'}, {:total_function => 'max', :total_value => 5}, {:total_function => 'min'}, {:total_function => 'sum', :total_value => 3}, {:total_function => 'std Dev'}, {:total_function => 'var'} ] } ) workbook.close compare_for_regression( ['xl/calcChain.xml', '[Content_Types].xml', 'xl/_rels/workbook.xml.rels'], {'xl/workbook.xml' => ['<workbookView']} ) end end
Version data entries
7 entries across 7 versions & 1 rubygems