Sha256: 7cbfb76225d14ba005c3afc8cdd23f6142f29977c81bd4d7f6fab792866fb79c

Contents?: true

Size: 434 Bytes

Versions: 48

Compression:

Stored size: 434 Bytes

Contents

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

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

  def test_write_a_graphic_frame_locks
    expected = '<a:graphicFrameLocks noGrp="1"/>'

    @drawing.__send__(:write_a_graphic_frame_locks)
    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.61.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.60.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.59.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.58.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.57.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.56.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.55.0 test/drawing/test_write_a_graphic_frame_locks.rb
write_xlsx-0.54.0 test/drawing/test_write_a_graphic_frame_locks.rb