Sha256: eec837de10bc4e7618ef0f70ffc4eeb3b538bc31c45d749f62e83f0dfccfd5ff
Contents?: true
Size: 1.58 KB
Versions: 26
Compression:
Stored size: 1.58 KB
Contents
# Copyright (C) 2015 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 TestGdkCursor < Test::Unit::TestCase include GdkTestUtils sub_test_case ".new" do test "type" do cursor = Gdk::Cursor.new(:arrow) assert_equal(Gdk::CursorType::ARROW, cursor.cursor_type) end test "pixbuf" do pixbuf = Gdk::Pixbuf.new(:file => fixture_path("ruby-gnome2-logo.png")) cursor = Gdk::Cursor.new(pixbuf, 0, 0) assert_equal(Gdk::CursorType::CURSOR_IS_PIXMAP, cursor.cursor_type) end test "surface" do only_gdk_version(3, 10, 0) surface = Cairo::ImageSurface.new(100, 100) cursor = Gdk::Cursor.new(surface, 0, 0) assert_equal(Gdk::CursorType::CURSOR_IS_PIXMAP, cursor.cursor_type) end test "name" do cursor = Gdk::Cursor.new("cross") assert_equal(Gdk::CursorType::CURSOR_IS_PIXMAP, cursor.cursor_type) end end end
Version data entries
26 entries across 26 versions & 1 rubygems