Sha256: 408e12750fbe82c43de1d219ea61c3c6563939c0ee6acb5cf45f054571e332c1
Contents?: true
Size: 609 Bytes
Versions: 19
Compression:
Stored size: 609 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionComment10 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_comment10 @xlsx = 'comment10.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write('A1', 'Foo') worksheet.write_comment('B2', 'Some text', :color => 51) # 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