Sha256: 12492b46bd56b58b6022fc6ec34669f9c2af1388af45e556506766451a4f3f60
Contents?: true
Size: 953 Bytes
Versions: 32
Compression:
Stored size: 953 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment06 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_comment06 @xlsx = 'comment06.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 => 1) worksheet.write_comment('A4', 'Some text') worksheet.write_comment('A5', '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