Sha256: b441e30aee59a6779746610dcfbcf1dd93bcef256d321e82cc248bd6e79e28fa
Contents?: true
Size: 565 Bytes
Versions: 12
Compression:
Stored size: 565 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment14 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment14 @xlsx = 'comment14.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write('A1', 'Foo') worksheet.write_comment('B2', 'Some text') worksheet.set_column('C:C', 13) # Set the author to match the target XLSX file. worksheet.comments_author = 'John' workbook.close compare_for_regression end end
Version data entries
12 entries across 12 versions & 1 rubygems