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