Sha256: 292acfbb9186e24a0df28073f014e0db3c2407ec1337cb404823d52da277fd5e
Contents?: true
Size: 894 Bytes
Versions: 7
Compression:
Stored size: 894 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionTable05 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_table05 @xlsx = 'table05.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') # Add a link to check rId handling. worksheet.write('A1', 'http://perl.com/') # Add comments to check rId handling. worksheet.comments_author = 'John' worksheet.write_comment('H1', 'Test1') worksheet.write_comment('J1', 'Test2') # Add drawing to check rId handling. worksheet.insert_image('A4', File.join(@test_dir, 'regression', 'images/blue.png')) workbook.close compare_for_regression end end
Version data entries
7 entries across 7 versions & 1 rubygems