This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
12 lines
225 B
Ruby
12 lines
225 B
Ruby
class TestGdkEvent < Test::Unit::TestCase
|
|||
include GtkTestUtils
|
|||
|
|||
def test_motion_request
|
|||
only_gtk_version(2, 12, 0)
|
|||
motion = Gdk::EventMotion.new
|
|||
assert_nothing_raised do
|
|||
motion.request
|
|||
end
|
|||
end
|
|||
end
|