Sha256: 55fb2b5984d924c5dfa89c1a7bd183f8aa665321012207588bb207f606abcca1
Contents?: true
Size: 737 Bytes
Versions: 17
Compression:
Stored size: 737 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionEscapes08 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_chart_escapes08 @xlsx = 'escapes08.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet # Test an already escaped string. worksheet.write_url( 'A1', 'http://example.com/%5b0%5d', 'http://example.com/[0]' ) workbook.close compare_xlsx_for_regression( File.join(@regression_output, @xlsx), @xlsx ) end end
Version data entries
17 entries across 17 versions & 1 rubygems