Sha256: 7e701ce66ef5e5dd81bc4e8d355b028744a188260e4812eaa0fa427e57794fd9
Contents?: true
Size: 524 Bytes
Versions: 7
Compression:
Stored size: 524 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionUtf8_07 < Test::Unit::TestCase 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
7 entries across 7 versions & 1 rubygems