Sha256: a9b6dd866c8cce30aeace46550d281d68a6efd9cb0158b7d62d5e1244984e6d6
Contents?: true
Size: 694 Bytes
Versions: 19
Compression:
Stored size: 694 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment09 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment09 @xlsx = 'comment09.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write_comment('A1', 'Some text', :author => 'John') worksheet.write_comment('A2', 'Some text', :author => 'Perl') worksheet.write_comment('A3', 'Some text') # 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
19 entries across 19 versions & 1 rubygems