Sha256: 245bfc777bce65b2af3586acd87dc96cec32cfddefcafe1d999bccc35f73b423

Contents?: true

Size: 774 Bytes

Versions: 48

Compression:

Stored size: 774 Bytes

Contents

# -*- coding: utf-8 -*-
require 'helper'
require 'write_xlsx/drawing'

class TestWriteCNvGraphicFramePr < Test::Unit::TestCase
  def setup
    @drawing = Writexlsx::Drawing.new
  end

  def test_write_c_nv_graphic_frame_pr_01
    expected = '<xdr:cNvGraphicFramePr/>'

    @drawing.instance_variable_set(:@embedded, 1)
    @drawing.__send__(:write_c_nv_graphic_frame_pr)
    result = @drawing.instance_variable_get(:@writer).string

    assert_equal(expected, result)
  end

  def test_write_c_nv_graphic_frame_pr_02
    expected = '<xdr:cNvGraphicFramePr><a:graphicFrameLocks noGrp="1"/></xdr:cNvGraphicFramePr>'

    @drawing.__send__(:write_c_nv_graphic_frame_pr)
    result = @drawing.instance_variable_get(:@writer).string

    assert_equal(expected, result)
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
write_xlsx-0.86.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.11 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.10 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.9 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.8 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.7 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.6 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.5 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.4 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.3 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.2 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.85.1 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.83.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.81.1 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.81.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.80.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.79.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.78.0 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.77.2 test/drawing/test_write_c_nv_graphic_frame_pr.rb
write_xlsx-0.77.1 test/drawing/test_write_c_nv_graphic_frame_pr.rb