Sha256: 49722613f972ddd0ddba9701297075cc967ea825860955f54f6652f893d9c3a6
Contents?: true
Size: 577 Bytes
Versions: 19
Compression:
Stored size: 577 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment02 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment02 @xlsx = 'comment02.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write('A1', 'Foo') worksheet.write_comment('B2', 'Some text') worksheet.write_comment('D17', 'More 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