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