Sha256: 865f9210eda9aabf2bff5edcbc33c0c42ef2cfd1a3cd3612e15b4de833277a03
Contents?: true
Size: 503 Bytes
Versions: 42
Compression:
Stored size: 503 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionImage02 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_image02 @xlsx = 'image02.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet worksheet.insert_image('D7', 'test/regression/images/yellow.png', 1, 2) workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end
Version data entries
42 entries across 42 versions & 1 rubygems