Sha256: d58a2cc034d634c3f4f705f9bb36dba06ec4cb555aef2f45921b7afdf0634fa6
Contents?: true
Size: 657 Bytes
Versions: 10
Compression:
Stored size: 657 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment02 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_comment02 @xlsx = 'comment02.xlsx' workbook = WriteXLSX.new(@xlsx) 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.set_comments_author('John') workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end
Version data entries
10 entries across 10 versions & 1 rubygems