Sha256: 211790eb40af6765e15456ddf87df156062b8f4cd169dd0dccc4a4bf9257736a
Contents?: true
Size: 1.5 KB
Versions: 32
Compression:
Stored size: 1.5 KB
Contents
# -*- coding: utf-8 -*- require 'helper' class TestRegressionShapeScale01 < Test::Unit::TestCase def setup setup_dir_var end def teardown File.delete(@xlsx) if File.exist?(@xlsx) end def test_shape_scale01 @xlsx = 'shape_scale01.xlsx' workbook = WriteXLSX.new(@xlsx) worksheet = workbook.add_worksheet format = workbook.add_format(:font => 'Arial', :size => 8) normal = workbook.add_shape( :name => 'chip', :type => 'diamond', :text => 'Normal', :width => 100, :height => 100, :format => format ) worksheet.insert_shape('A1', normal, 50, 50) normal.text = 'Scaled 3w x 2h' normal.name = 'Hope' worksheet.insert_shape('A1', normal, 250, 50, 3, 2) workbook.close compare_xlsx_for_regression( File.join(@regression_output, @xlsx), @xlsx, %w[ xl/printerSettings/printerSettings1.bin xl/worksheets/_rels/sheet1.xml.rels ], { '[Content_Types].xml' => ['<Default Extension="bin"'], 'xl/worksheets/sheet1.xml' => ['<pageMargins'] } ) end end
Version data entries
32 entries across 32 versions & 1 rubygems