Sha256: e256cce180d4424b40d065fe9c86d35f9f29c341c978093e6a72b10a7af1f8a3
Contents?: true
Size: 882 Bytes
Versions: 32
Compression:
Stored size: 882 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.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
32 entries across 32 versions & 1 rubygems