Sha256: cbc598644ef0b2c4bcde2201a1eeadf6507daa30867314cce2508df8bb0fbde3
Contents?: true
Size: 885 Bytes
Versions: 10
Compression:
Stored size: 885 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment09 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_comment09 @xlsx = 'comment09.xlsx' workbook = WriteXLSX.new(@xlsx) 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.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