Sha256: 6f21d454502122147af792e0c6968b9493b8ee1af1b557cb0bfcf119185008ad
Contents?: true
Size: 952 Bytes
Versions: 42
Compression:
Stored size: 952 Bytes
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionImage06 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_image06 @xlsx = 'image06.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet chart = workbook.add_chart(:type => 'bar', :embedded => 1) # For testig, copy the randomly generated axis ids in the target xlsx file. chart.instance_variable_set(:@axis_ids, [46335488, 46364544]) data = [ [1, 2, 3, 4, 5], [2, 4, 6, 8, 10], [3, 6, 9, 12, 15] ] worksheet.write('A1', data) chart.add_series(:values => '=Sheet1!$A$1:$A$5') worksheet.insert_chart('E9', chart) worksheet.insert_image('F2', 'test/regression/images/red.png') workbook.close compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx) end end
Version data entries
42 entries across 42 versions & 1 rubygems