Sha256: 307b78dde0c5e890001a5129a7c8271dd7c245853d6b0870633e120c0dc7e84f
Contents?: true
Size: 594 Bytes
Versions: 19
Compression:
Stored size: 594 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment12 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment12 @xlsx = 'comment12.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.set_row(0, 21) worksheet.set_column('B:B', 10) worksheet.write('A1', 'Foo') worksheet.write_comment('A1', 'Some text') # Set the author to match the target XLSX file. worksheet.comments_author = 'John' workbook.close compare_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems