Sha256: f1c22f92b9368fd31d42193a82011cf2cb20a4ab586a57df6234f4fd03fcc6d3

Contents?: true

Size: 956 Bytes

Versions: 10

Compression:

Stored size: 956 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.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

Version Path
write_xlsx-0.62.0 test/regression/test_comment06.rb
write_xlsx-0.61.0 test/regression/test_comment06.rb
write_xlsx-0.60.0 test/regression/test_comment06.rb
write_xlsx-0.59.0 test/regression/test_comment06.rb
write_xlsx-0.58.0 test/regression/test_comment06.rb
write_xlsx-0.57.0 test/regression/test_comment06.rb
write_xlsx-0.56.0 test/regression/test_comment06.rb
write_xlsx-0.55.0 test/regression/test_comment06.rb
write_xlsx-0.54.0 test/regression/test_comment06.rb
write_xlsx-0.51.0 test/regression/test_comment06.rb