Sha256: f5fe35a1f7bf2b3cbedca3bd2fc4245e3addc0a592672b3ac7685dafc2e1e0ca

Contents?: true

Size: 1.09 KB

Versions: 126

Compression:

Stored size: 1.09 KB

Contents

# Copyright (C) 2016  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

class TestLoader < Test::Unit::TestCase
  include GdkPixbufTestUtils

  setup do
    @loader = GdkPixbuf::PixbufLoader.new
  end

  test("#last_write") do
    assert_nil(@loader.pixbuf)
    File.open(fixture_path("gnome-logo-icon.png"), "rb") do |png|
      @loader.last_write(png.read)
    end
    assert_not_nil(@loader.pixbuf)
  end
end

Version data entries

126 entries across 118 versions & 2 rubygems

Version Path
gdk_pixbuf2-4.2.5 test/test-loader.rb
gdk_pixbuf2-4.2.4 test/test-loader.rb
gdk_pixbuf2-4.2.3 test/test-loader.rb
gdk_pixbuf2-4.2.2 test/test-loader.rb
gdk_pixbuf2-4.2.1 test/test-loader.rb
gdk_pixbuf2-4.2.0 test/test-loader.rb
gdk_pixbuf2-4.1.9 test/test-loader.rb
gdk_pixbuf2-4.1.8 test/test-loader.rb
gdk_pixbuf2-4.1.7 test/test-loader.rb
gdk_pixbuf2-4.1.6 test/test-loader.rb
gdk_pixbuf2-4.1.5 test/test-loader.rb
gdk_pixbuf2-4.1.4 test/test-loader.rb
gdk_pixbuf2-4.1.3 test/test-loader.rb
gdk_pixbuf2-4.1.2 test/test-loader.rb
gdk_pixbuf2-4.1.1 test/test-loader.rb
gdk_pixbuf2-4.1.0 test/test-loader.rb
gdk_pixbuf2-4.0.9 test/test-loader.rb
gdk_pixbuf2-4.0.8 test/test-loader.rb
gdk_pixbuf2-4.0.7 test/test-loader.rb
gdk_pixbuf2-4.0.6 test/test-loader.rb