Sha256: 74746b724e33a4a7ea1c1566c5bea57c8069010eaa2f4d7314f61394ca377697
Contents?: true
Size: 815 Bytes
Versions: 7
Compression:
Stored size: 815 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment08 < Test::Unit::TestCase def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment08 @xlsx = 'comment08.xlsx' workbook = WriteXLSX.new(@io) 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.comments_author = 'John' workbook.close compare_for_regression( nil, { 'xl/workbook.xml' => ['<workbookView'] } ) end end
Version data entries
7 entries across 7 versions & 1 rubygems