Sha256: 12f021f9572b22526b87454b9918d2671542c0066adb8c3e447bd325173f8bbb
Contents?: true
Size: 518 Bytes
Versions: 19
Compression:
Stored size: 518 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionUtf8_07 < Minitest::Test def setup setup_dir_var end def teardown @tempfile.close(true) end def test_utf8_07 @xlsx = 'utf8_07.xlsx' workbook = WriteXLSX.new(@io) worksheet = workbook.add_worksheet worksheet.write('A1', 'Foo') worksheet.write_comment('A1', 'Café') # Set the author to match the target XLSX file. worksheet.comments_author = 'John' workbook.close compare_for_regression end end
Version data entries
19 entries across 19 versions & 1 rubygems