Sha256: 5f37227d64a2f2dcfa09fde46b6f6c9bd12d48739683aaf31734ee0ac46c119e
Contents?: true
Size: 1000 Bytes
Versions: 10
Compression:
Stored size: 1000 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment08 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_comment08 @xlsx = 'comment08.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet worksheet.write_comment('A1', 'Some text') worksheet.write_comment('A2', 'Some text') worksheet.write_comment('A3', 'Some text', :visible => 0) worksheet.write_comment('A4', 'Some text', :visible => 1) worksheet.write_comment('A5', 'Some text') worksheet.show_comments # 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, nil, { 'xl/workbook.xml' => ['<workbookView'] }) end end
Version data entries
10 entries across 10 versions & 1 rubygems