Sha256: eb9a026ee682b1196a1b4fb98631a8701dcead091666b69fd27b7613ef9f7e12

Contents?: true

Size: 452 Bytes

Versions: 19

Compression:

Stored size: 452 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'
require 'write_xlsx/workbook'
require 'write_xlsx/package/vml'

class TestWriteShapelayout < Minitest::Test
  def test_write_shapelayout
    vml = Writexlsx::Package::Vml.new
    vml.__send__('write_shapelayout', 1)
    result = vml.instance_variable_get(:@writer).string
    expected = '<o:shapelayout v:ext="edit"><o:idmap v:ext="edit" data="1"/></o:shapelayout>'
    assert_equal(expected, result)
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.09.3 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.09.2 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.09.1 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.09.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.08.2 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.08.1 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.08.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.07.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.04.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.02.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.01.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-1.00.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.99.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.97.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.90.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.89.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.88.0 test/package/vml/test_write_shapelayout.rb
write_xlsx-0.87.0 test/package/vml/test_write_shapelayout.rb